@Sia,
There are three option that you can use for this.
1. You can use the find option on the webpage by using Ctrl+F. You can use the sendkey/Shell object.
2. Use a regular expression to check for this
3. Get the whole page text using
Regards,
Ankesh
There are three option that you can use for this.
1. You can use the find option on the webpage by using Ctrl+F. You can use the sendkey/Shell object.
2. Use a regular expression to check for this
3. Get the whole page text using
Code:
strBodyText=Browser().Page().Object.Body.innertext
'Now use instr function to see if the text was found or not
If Instr(strBodyText,"<Your Text>")>0 Then
'Found
Else
'Not Found
End IF
Regards,
Ankesh