Help documentation

Creating a Selenium Project

Once you have the blog running, you can create a Twist test suite to test it.

  1. Create a new Twist Project by clicking File > New > Twist Project.
  2. Since we are writing tests for a blog, let us name the project as BloggingExample.
  3. Click Advanced>> to configure options for Selenium.
  4. Click Selenium (for web applications) to select the Selenium web driver.
  5. Set the Browser URL to http://localhost:8080/blog, which is the location of the blog.
  6. Click Next > to create the first scenario.
  7. Create a Selenium project
  8. Type in HelloWorld into the Scenario Name.
  9. Create a scenario
  10. Click Finish to create the project and scenario.

Proceed to Hello World.