我在Ruby中启动了这样的chromedriver
driver = Watir::Browser.new :chrome, :switches => %w[--ignore-certificate-errors --disable-popup-blocking --disable-translate --disable-notifications --start-maximized]
但是,当我开始使用如下所示的无头模式时,它什么都不返回。
driver = Watir::Browser.new :chrome, :switches => %W[--ignore-certificate-errors --disable-popup-blocking --disable-translate --disable-notifications --disable-gpu --headless]
我需要切换--disable-popup-blocking
以防止我尝试访问的网站上的“允许位置”弹出窗口。如果镀铬没有无头启动,它就可以工作。但它在无头模式下不起作用。有没有办法使它有效?
提前致谢。