我正在研究用于网络抓取的python脚本,并且没有使用Chromedriver作为软件包之一。我希望此操作无需任何弹出窗口即可在后台运行。我在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 FYI
因此,在将我的代码更正为:
options = webdriver.ChromeOptions() options.add_experimental_option("excludeSwitches",["ignore-certificate-errors"]) options.add_argument('--disable-gpu') options.add_argument('--headless') chrome_driver_path = "C:\Python27\Scripts\chromedriver.exe"
运行脚本时,仍然会出现.exe文件。尽管这确实摆脱了一些额外的输出,告诉我“无法启动GPU进程”。
最终的工作是使用.bat文件运行我的Python脚本
所以基本上
c:\ python27 \ python.exe c:\ SampleFolder \ ThisIsMyScript.py%*
保存.txt文件并将扩展名更改为.bat
双击运行文件
因此,这只是在命令提示符中打开了脚本,ChromeDriver似乎可以在此窗口中运行,而不会弹出到屏幕的前面,从而解决了问题。