I have installed latest version SeleniumWrapperSetup-1.0.23.0.exe and when I try to open Google.co.in in Chrome, I got an error message as Disable Developer Mode Extension and Not Secure data is mentioned on top of the page. Please help
I have tried both ways below.
1
Dim driver As SeleniumWrapper.WebDriver Set driver = New SeleniumWrapper.WebDriver driver.Start "Chrome", "http://www.google.co.in"
Please help me for the working of this Selenium wrapper on higher version of Chrome.
A
Answer by
Alex Urbach
I see this is a Python module, which means that you can either contribute to the source code or you have to open a ticket with your issues and the developers or contributors will assist you or they release a patch in case it's that bad.
I have installed latest version SeleniumWrapperSetup-1.0.23.0.exe and when I try to open Google.co.in in Chrome, I got an error message as Disable Developer Mode Extension and Not Secure data is mentioned on
top of the page. Please help
I have tried both ways below.
Dim driver As SeleniumWrapper.WebDriver
Set driver = New SeleniumWrapper.WebDriver
driver.Start "Chrome", "http://www.google.co.in"
Dim bot As New WebDriver
bot.Start "chrome", "https://www.google.co.in"
bot.Open "https://www.google.co.in"
Thanks,
Gayathri.
When you create the drivers for Chrome, use the following code as you see here:
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);
This needs to be added to the conf.js file so that SeleniumWrapper will work properly.
Please help me for the working of this Selenium wrapper on higher version of Chrome.
I see this is a Python module, which means that you can either contribute to the source code or you have to open a ticket with your issues and the developers or contributors will assist you or they release a patch in case it's that bad.
The code is developed on the Github platform, therefore you have to visit the following website: https://github.com/keitaoouchi/seleniumwrapper/issues
Note: An account is necessary in order to post a topic.