Run chrome browser in inconginto Mode in Selenium

前端 未结 7 1616
忘掉有多难
忘掉有多难 2020-12-02 21:11

I want to run chrome in incongito mode through selenium. I googled enough for it and found how to run chrome directly in incongito mode with the h

7条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 21:45

    The code below will open the browser in incognito mode using selinium. Assuming selenium is setup in your eclipse:

    public WebDriver chromedriver;
    ChromeOptions options = new ChromeOptions();
    options.addArguments("--incognito");
    DesiredCapabilities capabilities = DesiredCapabilities.chrome();
    capabilities.setCapability(ChromeOptions.CAPABILITY, options);
    WebDriver chromedriver=new ChromeDriver(capabilities);
    

提交回复
热议问题