Wednesday, November 19, 2014

On 1:03 AM by Unknown   No comments
Answer 15Yes, you can first record individual test cases and then group all of them in a test suite. Following this entire test suite could be executed instead of executing individual tests.

Answer 16There are largely three types of verification points available with Selenium –
  • Check for page title
  • Check for certain text
  • Check for certain element (text box, drop down, table etc.)


Answer17

Verification: A verification check lets test execution continue even in the wake of failure with check.

Assertion: Assertion stops the test execution once the failure is obtained and would not continue further.


Consider an example of checking text on page, you may like to use verification point and let test execution continue even if text is not present. But for a login page, you would like to add assertion for presence of text box login as it does not make sense continuing with test execution if login text box is not present.

0 comments:

Post a Comment