Why is it when I launch a simple script I get the below image (too low to show image here).
Basically it gives me: developer mode extensions pop up in Chrome
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://google.com.uk')
driver.close()
Apparently this is a quick fix:
ChromeOptions options = new ChromeOptions();
options.addArguments("chrome.switches","--disable-extensions");
System.setProperty("webdriver.chrome.driver",(System.getProperty("user.dir") + "//src//test//resources//chromedriver_new.exe"));
driver = new ChromeDriver(options);
My question is, how can I get rid of this without some band aid solution? I did not get this yesterday. Is there a way or reinstall only way to go.