How to open incognito/private window with Selenium WD for different browser types?

后端 未结 9 895
感情败类
感情败类 2020-12-05 08:18

I want to test my test cases in private window or incognito window.

How to do the same in various browsers:

9条回答
  •  醉梦人生
    2020-12-05 09:12

    How to avoid Extensions in Private Mode prompt

    For the actual geckodriver version I use:

        options.addArguments("-private");
    

    It works fine but the annoying notification appears: Extensions in Private Mode.

    I found the way to avoid it:

        options.addPreference("extensions.allowPrivateBrowsingByDefault",true);
    

    As a result all extensions will run in private browsing mode without prompting at start

提交回复
热议问题