florentbr / SeleniumBasic

A Selenium based browser automation framework for VB.Net, VBA and VBScript
BSD 3-Clause "New" or "Revised" License
422 stars 197 forks source link

VBA Chrome is being controlled by automated test software #197

Open mrmattmc opened 4 years ago

mrmattmc commented 4 years ago

I have come across multiple solutions to this issue for other programming languages.

Does anyone have a solution that can be implemented using VBA similar to below?

ChromeOptions options = new ChromeOptions();
options.setExperimentalOption("useAutomationExtension", false);
options.setExperimentalOption("excludeSwitches",Collections.singletonList("enable-automation"));    
WebDriver driver = new ChromeDriver(options);
claim-airdrop commented 3 years ago

I cannot run selenium with VBA code on windows 10, why?

Jottie commented 3 years ago

Make sure .NET Framework 3.5 is enabled. By default it will be disabled on Win10 To enable, click start, in the search box, enter "OptionalFeatures.exe" and press Enter Search for .NET Framework 3.5 in the list and make sure it is ticked.

On Sat, 28 Nov 2020 at 09:01, virakcvr notifications@github.com wrote:

I cannot run selenium with VBA code on windows 10, why?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/florentbr/SeleniumBasic/issues/197#issuecomment-735067523, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACMWOWTWA4NM5U6SJ4ZLKK3SSCU6TANCNFSM4J6YTOBA .

kat80 commented 2 years ago

OptionalFeatures.exe

Above one is not working. Do we have any other option?

Thanks in advance