QTP Forums

Full Version: Output CheckPoint with WebTable what does it do?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
U can retrieve the result of the checkpoint by
a=Browser("Browser").Page("Page").WebTable("a table").Output (CheckPoint("Action Items R Table Data Output"))
msgbox(a)
(08-10-2011 11:06 AM)sshukla12 Wrote: [ -> ]U can retrieve the result of the checkpoint by
a=Browser("Browser").Page("Page").WebTable("a table").Output (CheckPoint("Action Items R Table Data Output"))
msgbox(a)

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?
Reference URL's