多彩编程 多彩编程MZPH · CODE BLOG
ARTICLE DETAIL

文章详情

深耕前端与后端开发技术的一线实战笔记与踩坑复盘。

selenium Firefox

selenium Firefox 亲测版本软件版本版本python3.11.43.11.4selenium4.16.04.46.0firefox120.0b9129.0.1geckodriver0.34.00.37.1各版本匹配查看地址: 版本对照表下载地址软件地址firefox下载geckodriver下载示例代码fromseleniumimportwebdriverfromselenium.webdriver.firefox.optionsimportOptionsfromselenium.webdriver.firefox.serviceimportService optionsOptions()options.binary_location../firefox# firefox启动路径options.add_argument(-headless)# 不显示浏览器界面serviceService(../geckodriver)# geckodriver路径driverwebdriver.Firefox(serviceservice,optionsoptions)Firefox options查看地址: Firefox/CommandLineOptions
返回列表