11-20-2010, 03:02 AM
If I am doing a Sync point, and am looking for the outer text but only a part of the text string; Do I just place that part in double-quotes?
As in the string “Current Account: 26678625-DAVIS CHARLES M”, I only want to sync on 26678625 before the script continues.
Do I:
Or must I add a wild card?
Or how do I use inStr?
Lorena ;-)
As in the string “Current Account: 26678625-DAVIS CHARLES M”, I only want to sync on 26678625 before the script continues.
Do I:
Code:
Browser("WisdomLogin").Page("Wisdom DEV_3").WebElement("Current Household: None").WaitProperty "outertext", "26678625”, 5000
Or must I add a wild card?
Code:
Browser("WisdomLogin").Page("Wisdom DEV_3").WebElement("Current Household: None").WaitProperty "outertext", "*26678625*”, 5000
Or how do I use inStr?
Lorena ;-)