python+selenium浏览器调用(chromeiefirefox)
Posted hyh123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium浏览器调用(chromeiefirefox)相关的知识,希望对你有一定的参考价值。
#coding=utf-8 from selenium import webdriver driver=webdriver.Chrome() #调用chrome浏览器 driver.get(‘https://www.baidu.com‘) print driver.title driver.quit() ------------------------------------------------------------------------------ 如果调用其他浏览器,代码换下即可: driver=webdriver.Ie() #调用ie浏览器 driver=webdriver.Firefox() #调用firefox浏览器
以上是关于python+selenium浏览器调用(chromeiefirefox)的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Python + Selenium 中创建随机用户代理?