美文网首页
Python selenium自动化爬虫 火狐浏览器(Firef

Python selenium自动化爬虫 火狐浏览器(Firef

作者: 巨数 | 来源:发表于2020-02-04 20:35 被阅读0次

Python selenium自动化爬虫 火狐浏览器(Firefox)相关设置

设置为无头浏览器

profile = webdriver.FirefoxOptions()
profile.add_argument('-headless')

设置不加载图片

firefox_profile = webdriver.FirefoxProfile()
firefox_profile.set_preference('permissions.default.image', 2)

设置不加载CSS

firefox_profile.set_preference('permissions.default.stylesheet', 2)

禁用flash

firefox_profile.set_preference('dom.ipc.plugins.enabled.libflashplayer.so', 'false')

加载以上选项

driver = webdriver.Firefox(firefox_profile=firefox_profile,options=profile)

相关文章

网友评论

      本文标题:Python selenium自动化爬虫 火狐浏览器(Firef

      本文链接:https://www.haomeiwen.com/subject/twudxhtx.html