Output CheckPoint with WebTable what does it do? - 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: Output CheckPoint with WebTable what does it do? (/Thread-Output-CheckPoint-with-WebTable-what-does-it-do) |
Output CheckPoint with WebTable what does it do? - Tonya S - 08-09-2011 Hello, Would someone please clarify what the following line does and if there's a way to retrieve the result of the CheckPoint? In the Object Repository "a table" exists under the "Test Objects" section and "Action Items R Table Data Output" exists under the "Checkpoint and Output Object" section. Code: Browser("Browser").Page("Page").WebTable("a table").Output CheckPoint("Action Items R Table Data Output") Thanks. RE: Output CheckPoint with WebTable what does it do? - sshukla12 - 08-10-2011 U can retrieve the result of the checkpoint by Code: a=Browser("Browser").Page("Page").WebTable("a table").Output (CheckPoint("Action Items R Table Data Output")) RE: Output CheckPoint with WebTable what does it do? - Tonya S - 08-12-2011 I've tried that, all that does is throw a "Expected end of statement" for Code: a=Browser("Browser").Page("Page").WebTable("a table").Output (CheckPoint("Action Items R Table Data Output")) Any suggestions? |