ChromeNavigate
ChromeNavigate>session_id,action,url
Navigates an Chrome session. Requires a session_id created by ChromeStart.
action can be one of:
•url
•back
•forward
If action is set to url the url parameter must be set to a valid url. Otherwise url should be blank.
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/
//we can go back and forward ...
ChromeNavigate>session_id,back,
ChromeNavigate>session_id,forward,