MHH
MHH

Reputation: 95

Executing Webdriver script from HTML

I am creating a frame work for my AUT. I plan to use Webdriver/Java. I am relatively new to Selenium, Java and html programming. I want to implement the framework in following manner.

  1. There will be an HTML interface where user can select check boxes for the test cases he wants to run.
  2. He can submit after making his selection.
  3. On submitting the script will be executed.
  4. Execution will consist of only selected cases.

My questions are:

Upvotes: 7

Views: 362

Answers (1)

Chris Gunawardena
Chris Gunawardena

Reputation: 6468

Have you looked at Selinium IDE? It's a basic front end for Selinium. You can record and playback test cases and you are able to select which test case to run from a test suite.

Since recently this could be used to run tests in browsers other than just firefox using Selenium IDE.

PS You should also look into Huxley-Selenium for regression testing. We found the node version is much easier to install.

Hope this helps. Good luck!

enter image description here enter image description here

Upvotes: 4

Related Questions