python+selenium浏览器调用(chrome、ie、firefox)

python

代码:

#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浏览器

 

1 在chrome 下运行脚本,需要将chromedriver.exe 放在chrome浏览器安装目录下

(同时设置用户环境变量path:C:\Users\xxxxxx\AppData\Local\Google\Chrome\Application;)

2 在ie 下运行脚本,需要将IEDriverServer.exe 放在ie浏览器安装目录下

(同时设置用户环境变量path:C:\Program Files\Internet Explorer )

3 在firefox下运行脚本,直接调用(默认安装路径下)

总结:调用chrome、ie浏览器需要提前把对应的driver下载好,并放到安装目录下,同时设置好环境变量

以上是 python+selenium浏览器调用(chrome、ie、firefox) 的全部内容, 来源链接: utcz.com/z/388230.html

回到顶部