Incognito tabHow to open the browser in incognito tab

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 :slight_smile:

1 Like

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.