In Webtable New rows getting added, we have select the name as Sandeep ,If name column is sandeep then need to check the checkbox ,we don't know the rows and columns ,Can anyone please tell me the answer.
Answer Posted / mogal
RC = Browser("Browser").Page("Page").WebTable("html tag:=TABLE").RowCount
RC = Browser("Browser").Page("Page").WebTable("html tag:=TABLE").ColumnCount(1)
RN = RC = Browser("Browser").Page("Page").WebTable("html tag:=TABLE").GetRowWithCellText("Sandeep")
For j = 1 to CC
If Browser("Browser").Page("Page").WebTable("html tag:=TABLE").GetCellData(RN,j) = "Sanddeep" Then
CN = j
End If
Next
Set OExpBox = Browser("Browser").Page("Page").WebTable("html tag:=TABLE").ChildItem(RN,CN,"WebCheckBox",0)
OExpBox.Click
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
I want to test my vb.net solution file using qtp. Does Qtp test only .exe file?
Explain the parameter in qtp?
Explain different types of action in qtp?
How to capture a window in QTP?
give me an example where u used good judgement and logic in solving a problem
What are the different types of qtp test assets and their extensions?
Which recording modes need more memory?
Hi Samrat, Thank u very much, what u said it is right.
In QA Testing when do you use Loadrunner vs QTP? What are the main differences between those two tools? Explain the purpose with real world scenario examples...In advance thank you!!!
Write the code for,In the page screen we have total 10 Links,out of these I have to click 9th link
HOw to add the recovery file at runtime to the test file .
What is Curd testing?
Explain the features of quick test pro(qtp)?
I created 3 actions in test suppose I want to run action 1 in single time, action 2 is 4 time what I do?
Can we call qtp test from another test using scripting. Suppose there are 4 tests and I want to call these tests in a main script. Is this possible in qtp?