ChromeWaitForText>session_id,all,text_to_find,timeout,result
Waits for text to exist in the page.
session_id: a session id created by ChromeStart.
all: 0 to look at text only, 1 to look at full source
text_to_find: the text to wait for
timeout: a timeout in seconds. If the text is not found in this time the command will exit with result set to 0.
result: wil return 1 if found, 0 if not.
See also: Chrome Functions
Example
Let>CHROMEDRIVER_EXE=c:\chromedriver.exe
//start a Chrome session
ChromeStart>session_id
//navigate to google.com
ChromeNavigate>session_id,url,https://www.google.com/
ChromeWaitForText>session_id,0,Accept,5,nFound