in a web table , i want you to click a particular object inside cell
Answers were Sorted based on User's Feedback
Answer / bhargavi
We can achieve it using ChildItem() method
Syntax object.ChildItem(Row,Column,Micclass,Index)
Assume there is a webtable with name "UserDetails" in a page.We have to click a link which is in first row,first column of webtable.Then the code will be as follows:
Browser("title:=Gmail").Page("title:=Gmail").Webtable("name:=UserDetails").childitem(1,1,"Link",0)
Note:Assuming browser & page property 'title' value as "Gmail"
| Is This Answer Correct ? | 12 Yes | 1 No |
browser("index:=0").page("index:=0").webtable("index:=0").childitem(2,1,"Link",0).click
| Is This Answer Correct ? | 3 Yes | 0 No |
how can we group that these test cases only should be automated and in which order you execute that test cases?
I am Facing Issues with learing datepicker 1)when i first learn datepicker as current system date . 2)if i wanna runtime datepicker value it gives error
What are benefits of qtp?
Explain how you can replace string in qtp?
What are FAST and NORMAL modes in qtp ? Why r these modes intended for ?
suppose we recording a web based project so for that we are using internet explorer after that if we execute that script in netscape then script will execute or not and one more thing is to exeute the script in any browser what to do
You have an application version 1 with 5 combo boxes, Developers develop version 2. Here they replaced bottom 3 combo boxes with each other. While executing the Test script for version1 no errors. When we execute the Test script for version2 that QTP showing the error message "Object not identified" remember no property changed in version 2, ordinal identifier also disabled. Find what properties might change here in this scenario
Is QTP supports Unix. If yes, then how the test automation is done?
Explain the concept of object repository and how quicktest professional recognises objects?
How to Import data from a ".xls" file to Data table during Runtime.
I have below user Defained function function AddTwo(ByVal a, ByVal b) Dim Ans Ans=a+b MsgBox Ans End function Now my question comes here...from given below methods which method is right to call above function?Which is Wrong and why? 1. AddTwo(2,4) 2. Call AddTwo(2,4) 3. AddTwo 2,4 4. Call AddTwo 2,4
WHAT IS ENVIRONMENT VARIABLES?