SeleniumWrapper questions & answers

Selenium Wrapper lets you automate web browsing tasks with Excel/VBA or VBS
G
Question by Guest
521 views
November 14, 2017

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"

  • 2

Dim bot As New WebDriver
bot.Start "chrome", "https://www.google.co.in"
bot.Open "https://www.google.co.in"


Thanks,
Gayathri.

S
Answer by Sean Hill

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.

S
Question by srahul.ca
289 views
January 14, 2017

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.


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.

See more questions & answers

Ask a question about SeleniumWrapper

Alternative downloads

Auto Mouse Click
rating

Automate series of mouse clicks at specified X-Y points on the screen.

RoboTask
rating

Automate any series of tasks you do on your computer.

Remove VBA Password
rating

It can remove any VBA password and unlock locked VBA projects.