What can be tested when recording a verification point?
A. an objects data only
B. an objects data or properties only
C. whether or not the object is working
D. an objects data, properties, or existence
The two phases of playing back a script are script development and _____.
A. unit testing
B. manual verification
C. reviewing results
D. regression testing
Given the following:
A script named BuyCD has been created.
A Helper Superclass named HelperSuper1 has been created.
A Helper Superclass named HelperSuper2 has been created.
Which of the following are valid Functional Tester script class inheritance hierarchies? (Choose two.) Note: inherits from is expressed by the symbol ?
A. BuyCD -> BuyCDHelper -> RationalTestScript
B. BuyCD -> HelperSuper1 -> RationalTestScript
C. Helper1 -> RationalTestScript -> BuyCD
D. BuyCD -> HelperSuper1 -> HelperSuper2 -> RationalTestScript
What is the best practice when changing object maps that are already assigned to Functional Test projects?
A. highlight the project in the Functional Test projects, right-click, select Properties > Functional Test project and browse to the new object map
B. record a new script, select the new Functional Test project, click next and browse to the new test object map
C. modify the XML file, configurations.rftcfg, locate the object map section, enter the proper object and save the XML file
D. right-click the test object map in the script explorer, choose the Open option and make necessary changes
Which three statements are true about HelperSuper classes? (Choose three.)
A. Scripts can share Helper Superclasses.
B. Scripts cannot share Helper Superclasses.
C. Scripts can inherit from multiple Helper Superclasses.
D. Scripts can inherit from a Helper Superclass that resides in a .jar file.
Given the following code snippet:
OK().waitForExistence();
Assuming that no changes have been made to the Functional Tester default playback settings, which two statements will cause Functional Tester to wait for 60 seconds for the OK button to appear? (Choose two.)
A. setOption(IOptionName.MAXIMUM_FIND_OBJECT_TIME, 60.0)
B. setOption(IOptionName.MAXIMUM_WAIT_FOR_EXISTENCE, 60.0)
C. setOption(IOptionName.TIME_MULTIPLIER, .5)
D. setOption(IOptionName.TIME_MULTIPLIER, 2.0)
Click the Exhibit Button A script needs to perform an action on an HTML List object. Figure 6.1 shows the recognition properties of the list object. Figure 6.2 shows the recognition properties of the HTML document. What will be the score of the found test object at runtime if the .text and .id recognition properties in the list object are different and the .url property of the HTML Document object?
A. 1000
B. 1400
C. 10000
D. 14000
What will the following CallScript do? CallScript (myScript, null, DP_ALL)
A. cause the script to run an infinite number of times
B. cause the script to iterate through the entire datapool
C. cause the script to run through 100 datapool values
D. cause myScript to always pass
Which statement is true about an RFT test datapool?
A. It is exclusive for only one test script.
B. It is a collection of related data records.
C. It is automatically generated during script record.
D. It is a collection of related test scripts.
What is one way to insert data-driven commands into the test script?
A. use the Insert Data Driven Commands button while recording
B. use the Insert Data Driven Commands button while executing
C. the commands are generated automatically while importing the datapool
D. use the super helper class after recording