我正在编写一个 Python 脚本来进行 web 擦除,并且已经开始使用 ChromeDriver 作为其中的一个软件包。我希望这个操作在后台没有任何弹出窗口。我使用的选项’无头’的铬驱动程序,它似乎做的工作方面没有显示浏览器窗口,但是,我仍然看到。运行 exe 文件。看看我所说的截图。截图
这是我用来启动 ChromeDriver 的代码:
options = webdriver.ChromeOptions()
options.add_experimental_option("excludeSwitches",["ignore-certificate-errors"])
options.add_argument('headless')
options.add_argument('window-size=0x0')
chrome_driver_path = "C:\Python27\Scripts\chromedriver.exe"
我尝试做的事情是将窗口大小的选项改为0x0,但是我不确定它是否像。Exe 文件仍然弹出。
你知道我该怎么做吗?
仅供参考,我正在使用 Python 2.7