Forum Discussion
mangelastro
13 years agoNew Contributor
Thanks for all the replies!
Figured it out using aqObject.GetPropertyValue
Set rpiCompleteWirePage = Sys.Browser.Page("https://www.someurl.com")
Set SeqNrObj = rpiCompleteWirePage.NativeWebObject.Find("InnerText", "Reference Numb*")
PropValue = aqObject.GetPropertyValue(SeqNrObj, "InnerText")
Log.Message(PropValue)
Now just have to strip out the value i need since it gives me a long value
Figured it out using aqObject.GetPropertyValue
Set rpiCompleteWirePage = Sys.Browser.Page("https://www.someurl.com")
Set SeqNrObj = rpiCompleteWirePage.NativeWebObject.Find("InnerText", "Reference Numb*")
PropValue = aqObject.GetPropertyValue(SeqNrObj, "InnerText")
Log.Message(PropValue)
Now just have to strip out the value i need since it gives me a long value