This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Silk Workbench - How to launch CHROME incognito mode?

Hi,

Is there a way that I can launch the CHROME browser in INCOGNITO mode to run the scripts?

I'm using Silk  Test Workbench.

Kind regards,

Srikanth

  • Suggested Answer

    0  

    Hi  

    You should simply need to specify the "-incognito" command line argument.

    For example, in a VB.NET Script:

    	Dim incognitoChrome As New BrowserBaseState(BrowserType.GoogleChrome, "http://demo.borland.com")
    	incognitoChrome.CommandLineArguments = "-incognito"
    	incognitoChrome.Execute()

    Regards
    Robert