What is the advantage of using do except instead of
other error logging functions?

Answer Posted / xyz

If your testcase has more than one verify statements then
do..except is useful.If one of the verify statements fail
then also the other verify statements will be
executed.otherwise only one verify statement will be
executed and the other statements will not be executed

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a test frame?

614


What is the standard flow of execution of a test case?

534


What is the syntax of ui object identifier used by dom extension?

592


How to run a test case from a test script file?

598


How to open an existing silktest project?

564






How to create a test frame?

626


Can silktest run on mac?

641


How to add objects of other pages to a test frame?

604


What are the default testplan attributes?

622


How to record a test case?

596


What are the types of text lines in a testplan file?

592


How to create group and sub group descriptions in a testplan?

587


How to define values for a testplan attribute?

583


How to run all test cases in a testplan?

619


Hi All, An newbiee to silk test tool. I wanted to write a function which checks the browser type installed in the local machine & then based on the browser type test case should run. I tried little bit writing the function : Void Func_ValidateBrowserType() Window myWin myWin = Browser.GetRealBrowser () print (myWin) Any help please.. Thanks, V

2042