![]() |
Webtable - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners) +--- Thread: Webtable (/Thread-Webtable--7583) |
Webtable - ramesh - 08-30-2013 Hi All, I am new to QTP's webtable.I have gone through some blog on webtable and for that moment I got to know how it works but when I tried with a example I am getting so many confusions. I created a simple html page with a table Code: <table border="1" name="MyWebTable"> Then i wrote fallowing code to get the webtable details: Code: systemutil.Run("C:\Users\Ramesh\Desktop\testing.html") But I am getting error saying "webtable does not present in OR" My doubts are like 1. I am writting Descriptive Programming then why it need to store in OR. 2. and Why this error here. I tried with other webtable properties from object spy also but not working. Please help me on this. RE: Webtable - Ankur - 09-01-2013 Your With statement is redundant. 1. I am writting Descriptive Programming then why it need to store in OR. 2. and Why this error here. >>The propertiy value pair in Your DP statement is worng for Webtable object. Use Object Spy to check which property is QTP using to identify the object. RE: Webtable - ramesh - 09-02-2013 Thank you ankur... ![]() RE: Webtable - ramesh - 09-03-2013 Hi All I am getting error "Object required" on my below code Please help: Code: With browser("title:=testing").page("title:=.*") Below is my webtable code and i want all the link except 1st column Code: <table name="Webtable" border="1"> Thanks in advance |