- ArchanaRegular Participant
- Posts : 33
Join date : 2009-08-21
Stop the current test case if any line fails.
Sat Sep 05, 2009 2:45 pm
Hi,
In my test case, there are many assertions, if one is failed, I don't want to execute remaining lines of this test case. How can I?
In selenium RC PHP, I'm using markTestSkipped with some msg, but not working fine
if($sal < 0)
{
$this->markTestSkipped( 'This test is skipped since one salary is negative');
}
When I run this testcase, Test is skipped, but msg is not appearing. Can we do this with selenium IDE commands?
In my test case, there are many assertions, if one is failed, I don't want to execute remaining lines of this test case. How can I?
In selenium RC PHP, I'm using markTestSkipped with some msg, but not working fine
if($sal < 0)
{
$this->markTestSkipped( 'This test is skipped since one salary is negative');
}
When I run this testcase, Test is skipped, but msg is not appearing. Can we do this with selenium IDE commands?
Re: Stop the current test case if any line fails.
Mon Sep 07, 2009 10:47 am
hi,
I think assert will automatically abort the test, if it fails. Thats the motive of assetion in selenium . read this to get a clear picture:
All Selenium Assertions can be used in 3 modes: "assert", "verify", and
"waitFor". For example, you can "assertText", "verifyText" and
"waitForText". When an "assert" fails, the test is aborted. When a
"verify" fails, the test will continue execution, logging the failure.
This allows a single "assert" to ensure that the application is on the
correct page, followed by a bunch of "verify" assertions to test form
field values, labels, etc.
You can also use the following command to end the whole process if any assertion fails
close()
Simulates the user clicking the "close" button in the titlebar of a popup window or tab.
Hope this will help you.
bye
I think assert will automatically abort the test, if it fails. Thats the motive of assetion in selenium . read this to get a clear picture:
All Selenium Assertions can be used in 3 modes: "assert", "verify", and
"waitFor". For example, you can "assertText", "verifyText" and
"waitForText". When an "assert" fails, the test is aborted. When a
"verify" fails, the test will continue execution, logging the failure.
This allows a single "assert" to ensure that the application is on the
correct page, followed by a bunch of "verify" assertions to test form
field values, labels, etc.
You can also use the following command to end the whole process if any assertion fails
close()
Simulates the user clicking the "close" button in the titlebar of a popup window or tab.
Hope this will help you.
bye
- 'Play Current Test Case' button not support to Ruby language.
- calling one juint's test case from another junit test case
- [SOLVED] Switching to next test case in case of failure & using a .bat file for multiple tests
- How to use a value from one test case into another test case in selenium ide.
- Error in adding test case to test suite.
Permissions in this forum:
You cannot reply to topics in this forum