Hi,
I tried searching for this but did not find an answer. I am trying to run an automation that will log into a particular site that uses captcha. I have an extension to bypass this, however when running on a normal chrome window the site still flags the captcha as being submitted by an automation and denies access. Is there a way to use the Execute command and have it automatically open in an incognito window so that this won't flag as being automated? I am closing chrome and opening a new session each time this automation loops.
Execute Chrome in incognito window
Moderators: Dorian (MJT support), JRL
-
- Newbie
- Posts: 7
- Joined: Fri Sep 07, 2012 8:41 am
- Location: Bournemouth
Re: Execute Chrome in incognito window
Hi
This should do what you need. Hope it helps. thanks. Jon
//Set IGNORESPACES to 1 to force script interpreter to ignore spaces.
//If using IGNORESPACES quote strings in {" ... "}
//Let>IGNORESPACES=1
Let>CHROMEDRIVER_EXE="C:\chromedriver.exe"
//C:\Users\jonagoss\AppData\Local\Google\Chrome\User Data\
//Let>CHROMEDRIVER_OPTIONS=--incognito
Let>CHROMEDRIVER_OPTIONS=--incognito, --user-data-
//Note the alternative use of forward slash to map to this path
dir=C:/Users/jonagoss/AppData/Local/Google/Chrome/User Data/
ChromeStart>SessionID
Wait>2
This should do what you need. Hope it helps. thanks. Jon
//Set IGNORESPACES to 1 to force script interpreter to ignore spaces.
//If using IGNORESPACES quote strings in {" ... "}
//Let>IGNORESPACES=1
Let>CHROMEDRIVER_EXE="C:\chromedriver.exe"
//C:\Users\jonagoss\AppData\Local\Google\Chrome\User Data\
//Let>CHROMEDRIVER_OPTIONS=--incognito
Let>CHROMEDRIVER_OPTIONS=--incognito, --user-data-
//Note the alternative use of forward slash to map to this path
dir=C:/Users/jonagoss/AppData/Local/Google/Chrome/User Data/
ChromeStart>SessionID
Wait>2
Jonathan