How can i open 5 multiple browser at once through QTP VB
script and i want to login with 5 different credentials i
already tried with this code but its entering credentials
only for first browser and am using datatable to
parameterize
Answer Posted / ruby
For i = 1 to 5
SystemUtil.Run "iexplore","www.gmail.com"
Next
For i = 0 to 4
Browser("title:=Google","Creationtime:=" & i).Page("title:=Google").WebEdit("name:=Usname").Set Datatable("Username")
Browser("Title:=Google","Creationtime:=" & i).Page("title:=.*").WebEdit("name:=Pwd").Set Datatable("Password")
Browser("Creationtime:=" & i).Page("title:=.*").WebButton
("name:=Submit").Click
Next
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How many tabs are available in debug viewer pane?
What will be happen if i load object repository at run time, but it has already associated.
What is quick test pro?
What is a programmatic description?
Can we run multiple QTP scripts one after the other without manual intervention? How?
Is it possible to use two instances of UFT on the same machine? If not why?
Hi, How Accessibility checkpoint in QTP can be implemented in the test script?
Hi am New to Automation Testing , any one can you help me what are the basic questiion are asked an interview?
To retrive the test data which tool vl use and whats basis u vl write test data? its urgent
supose i hv to acsess some functionlaties of a test in 1 machin , some part other machin how can acsess?
how can we preform retesting(DATA driven test) using function please gine the code for loginpage
How QTP identify the system time that's changes every seconds?
How to interact tool & application build in QTP?
What are the features supported by UFT?
Hello everyone! I am just writing a small test for a windows application. I have a problem with a text output value. The value i am trying to catch is presented in a scrollable textbox. When the text is too long, only a portion of it gets captured. Do you have any experience with this?