《SeleniumBasic 3.141.0.0 - 在VBA中操作浏览器》高级技巧之七:Loading of unpacked extensions is disabled by the administrator.
使用Selenium启动Chrome浏览器,经常弹出如下这种对话框。
必须手工点击OK关闭该对话框才能继续往下运行。
解决方法有两个
方法一:删除注册表
打开注册表编辑器,找到如下注册表项,删除。这个操作需要管理员权限。
方法二:代码中设置选项(标记黄色的那行是关键)
Dim Service As SeleniumBasic.ChromeDriverService Dim Options As SeleniumBasic.ChromeOptions Set WD = New SeleniumBasic.IWebDriver Set Service = New SeleniumBasic.ChromeDriverService With Service .CreateDefaultService driverPath:="E:\Selenium\Drivers" .HideCommandPromptWindow = True End With Set Options = New SeleniumBasic.ChromeOptions With Options .BinaryLocation = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" .AddExcludedArgument "enable-automation" .AddAdditionalCapability "useAutomationExtension", False End With WD.New_ChromeDriver Service:=Service, Options:=Options WD.URL = "https://www.baidu.com"
AddAdditionalCapacity用来增加额外的能力。
再次运行程序,不再弹出。请大家记住方法二