How to capture and display text check point value in message box without using o/p checkpoint

Questions by swapna.pulliwar

Showing Answers 1 - 2 of 2 Answers

hoks

  • Jul 8th, 2008
 

Store display text in object repository and use the following code to read text

Msgbox Brpwser("Browser").page("Page_Name").webelement("text").GetROProperty("innertext")

where "innertext" is property of the display text.

Kimberly Rattler

  • Apr 16th, 2016
 

What will the following code display in message boxes?
Dim intX As Integer = 1
Do While intX < 5
MessageBox.Show(intX.ToString)
intX += 1
Loop

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions