python-selenium之firefox、Chrome、Ie运行

测试脚本是否支持在不同浏览器运行
firefox浏览器运行脚本

from selenium import webdriver

driver=webdriver.Firefox()

driver.get("http://baidu.com")assert "sss" in driver.titledriver.quit()

chrome浏览器运行脚本

from selenium import webdriver
import os
chromedriver="C:\Program Files (x86)\Chrome\chromedriver.exe"
os.environ[‘webdriver.chrome.driver‘]=chromedriver
driver=webdriver.Chrome(chromedriver)
driver.get("http://baidu.com")
assert "sss" in driver.title
driver.quit()

时间: 2024-10-13 14:46:32

python-selenium之firefox、Chrome、Ie运行的相关文章

python selenium自动化屏蔽chrome“正受到自动化测试软件的控制”、“开发者模式”、“保存密码提示”

python selenium自动化屏蔽chrome“正受到自动化测试软件的控制”.“开发者模式”.“保存密码提示” from selenium import webdriver option = webdriver.ChromeOptions() #屏蔽自动化受控提示 && 开发者提示 option.add_experimental_option("excludeSwitches", ['enable-automation', 'load-extension']) #

python+selenium启动firefox和chrome

有段时间没整自动测试了,今天准备接着在搞搞,打开pycharm已运行脚本,发现firefox打开了不会进行任何操作 ,chrome 也打开了,也是不进行任何操作,瞬间就蒙蔽了,之前不是好好的么,怎么突然就.........,那就开整吧 看了下firefox的版本,51.xx,好吧,firefox老是喜欢偷偷的升级,那就卸载了重装,并设置他不检查升级,也不自动升级 首先搞清楚selenium3.0以上的版本需要firefox 48及以上的版本 我是selenium 3.01的版本,于是下载一个fi

windows下安装配置python + selenium 来驱动firefox

第一步,首先下载安装python ,我下载的是3.5版本,这个版本,自带了pip工具,不需要安装pip了 :) 链接地址:python 3.5 第二步,执行pip install selenium 安装selenium库 到这里,  本来以为已经结束了,就直接 写了脚本驱动浏览器 第三步,然而,代码根本运行不了, 折腾了半天,才发现,原来selenium 3版本,需要安装geckodriver selenium依靠 geckodriver来驱动浏览器. 至此,安装结束,可以运行以下脚本,看看会发

Python启动浏览器Firefox\Chrome\IE

# -*- coding:utf-8 -*- import os import selenium from selenium import webdriver from selenium.webdriver.common.keys import Keys """ 练习启动各种浏览器:Firefox, Chrome, IE 练习启动各种浏览器的同时加载插件:Firefox, Chrome, IE """ def startFirefox(): &q

【win10】selenium之Firefox,Chrome,IE对应webdriver的安装配置

一.安装Python3 1. 可以到Python官方网站:https://www.python.org/downloads/  下载并安装Python,建议安装Python3(由于已经安装过,此处就不继续阐述安装步骤,安装步骤和其他软件一样,安装完成后把安装目录加入到环境变量,可参考其他文章) 2. 安装后,检查是否安装成功的方法: 在Windows命令行(cmd),输入:python,出现python版本信息就表明安装成功 注:若提示Python不是内部或者外部命令,就把Python的安装目录

python+selenium下载文件——Chrome

from selenium import webdriver import time options = webdriver.ChromeOptions() prefs = { 'profile.default_content_settings.popups':0 ,'download.default_directory':'C:\\Users\\del\\Desktop\\1'} #设置为0表示禁止弹出窗口, #设置文件下载路径 options.add_experimental_option(

运行selenium 出现 Firefox can't find the file at chrome://src/content/.....

今天在跑selenium 自动化测试,运行了后台之后,想在火狐打开目的页面,结果火狐可以运行可是无法打开页面,还显示了标题的字符串:Firefox can't find the file at chrome://src/content/..... 谷歌找了很久得到的原因如下:火狐版本太新....(因为selenium rc是被历史淘汰的东西,现在都是用selenium 2.0了,所以selenium 1.0所用到的selenium rc 新版本的火狐支持不太好,在40+上的版本运行都会比较不愉快

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

代码: #coding=utf-8 from selenium import webdriver driver=webdriver.Chrome() #调用chrome浏览器 driver.get('https://www.baidu.com') print driver.title driver.quit() ------------------------------------------------------------------------------如果调用其他浏览器,代码换下即

在Centos7上安装Python+Selenium+Chrome+Chromedriver

1.下载Chrome 上一篇文章已经演示过了Python+Selenium+Firefox+Geckodriver安装步骤并通过自动化脚本打开百度 因此当前只需要安装Chrome和Chromedriver即可 官网下载地址:https://www.google.cn/chrome/(可以通过centos7自带火狐浏览器进行下载RPM包) 百度云下载:https://pan.baidu.com/s/1XLpKO-pIzxc0uw3h2u4YnQ(密码:0vu2) 百度云下载后通过Xftp软件传到C

python+selenium Remote 启动firefox报错总结

#coding=utf-8 from selenium.webdriver import Remote dr = Remote(command_executor='http://127.0.0.1:4444/wd/hub', desired_capabilities={'platform':'ANY', 'browserName':'firefox', 'version':'', 'javascriptEnabled':True } ) dr.get("https://www.baidu.com