-
The idea is to handle all possible windows that might be invoked in a flow similar to handling an exception.">
How do I identify an active/current window in QTP?Is there something like Window("Current Window") as in Rational Robot?The idea is to handle all possible windows that might be invoked in a flow similar to handling an exception.
-
my code is:
browser("B1").page("P1").WebEdit("Login").Set "Admin"
CAN I USE IT LIKE THIS?
myObj = "Login"
browser("B1").page("P1").WenEdit (myObj).Set "Admin"
It is not working. How to do in this situation?
">Hi All,my Object name is "Login".my code is:browser("B1").page("P1").WebEdit("Login").Set "Admin"CAN I USE IT LIKE THIS?myObj = "Login"browser("B1").page("P1").WenEdit (myObj).Set "Admin"It is not working. How to do in this situation?