Web tables - 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: Web tables (/Thread-Web-tables) |
Web tables - dineshreddymca - 03-07-2013 Hi, I want know about the webtables in qtp. what is the use of webtables and why we use web tables in qtp. RE: Web tables - supputuri - 03-10-2013 Please ref to HTML regarding the WebTable, then you can understand the concept RE: Web tables - dineshreddymca - 03-14-2013 can u tell me how we retreive the data from webtables using qtp dinesh reddy 9738703108 RE: Web tables - basanth27 - 03-15-2013 Have you made an attempt to understand an Webtable? Probably you would have, and if you did then the below explanation will be easier to understand Webtable is an object which contains horizontal rows and vertical columns. Data is contained in the cell and you can imagine an excel sheet as an webtable. You can interact with an webtable using the following methods. Now methods are inbuilt or custom functions which talk to the table and perform the desired action per the defined instruction. 1. RowCount - Would fetch the total rows in an Webtable. 2. ColumnCount - Would fetch the total columns in a Webtable. 3. GetCellData(rows,cols) - Retrieves the cell value for the particular row and column. This should give you a jumpstart as good as a spoon in your mouth If you intend to learn more about an Webtable and its methods please feel free to do an F1 on QTP if you have an trial version of QTP or GOOGLE should be able to help you out. Good Luck !!! |