python+selenium浏览器调用(chrome、ie、firefox)
程序员文章站
2022-03-08 13:11:20
...
#coding=utf-8
from selenium import webdriver
#driver=webdriver.Ie() #调用ie浏览器
#driver=webdriver.Firefox() #调用firefox浏览器
driver=webdriver.Chrome() #调用chrome浏览器
driver.get('https://www.baidu.com')
print driver.title#输出title
driver.quit()#关闭驱动
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下运行脚本,直接调用(默认安装路径下)
参考:http://www.cnblogs.com/nzyjlr/p/4377663.html
------------------------个人源码
# coding=utf-8
'''
Created on 2017年2月20日
@author: chenkai
'''
from selenium import webdriver
driver=webdriver.Chrome(executable_path="C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe") #调用chrome浏览器
driver.get('http://www.ijiami.cn/')
print driver.title
#driver.quit()
from selenium import webdriver
#driver=webdriver.Ie() #调用ie浏览器
#driver=webdriver.Firefox() #调用firefox浏览器
driver=webdriver.Chrome() #调用chrome浏览器
driver.get('https://www.baidu.com')
print driver.title#输出title
driver.quit()#关闭驱动
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下运行脚本,直接调用(默认安装路径下)
参考:http://www.cnblogs.com/nzyjlr/p/4377663.html
------------------------个人源码
# coding=utf-8
'''
Created on 2017年2月20日
@author: chenkai
'''
from selenium import webdriver
driver=webdriver.Chrome(executable_path="C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe") #调用chrome浏览器
driver.get('http://www.ijiami.cn/')
print driver.title
#driver.quit()
推荐阅读
-
JavaScript在IE和Firefox浏览器下的7个差异兼容写法小结_javascript技巧
-
支持IE,firefxo,chrome浏览器下鼠标拖动和拖拽的鼠标指针特效
-
微软斯巴达浏览器命名Edge 可兼容Chrome和Firefox插件
-
兼容IE、firefox以及chrome的js获取时间(getFullYear)
-
微软全新浏览器Microsoft Edge跑分:完爆IE/Chrome
-
微软斯巴达浏览器命名Edge 可兼容Chrome和Firefox插件
-
微软全新浏览器Microsoft Edge跑分:完爆IE/Chrome
-
微软Edge浏览器和IE、Chrome跑分测评对比图公开
-
恼火Flash插件 IE/Chrome/Firefox/Opera等如何设置点击播放?
-
如何才能让IE浏览器安装调用未签名的ActiveX控件