Hi,
How to open the browser in incognito window?
Hi,
How to open the browser in incognito window?
That is not possible. The openrpa extension does not request access to incognito tabs.
Hi @Ranieri_Rezende_Ferr, I have made a workflow like “OpenURL_Incognito”
which you can then invoke using invoke openRPA
The Workflow:
Invoke code:
Dim objShell = CreateObject("WScript.Shell")
objShell.Run(strBrowser & " --new-window """"" & strURL & """""" )
objShell = Nothing
let me know if this helped
chrome:
strBrowser = "chrome -incognito"
edge:
strBrowser = "msedge -inprivate"
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.