码迷,mamicode.com
首页 >  
搜索关键字:webdriver    ( 2418个结果
selenium自动化登录邮箱
from selenium import webdriverfrom selenium.webdriver.support.wait import WebDriverWaitfrom selenium.webdriver.support import expected_conditionsclass ...
分类:其他好文   时间:2020-07-10 21:25:19    阅读次数:87
Java+Selenium做UI自动化中@FindBy和@CacheLookup用法【多测师_王sir】
一、@FindBy和@CacheLookup用法 代码实例 package page; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.su ...
分类:数据库   时间:2020-07-10 19:31:53    阅读次数:344
webdriver options常用参数
webdriver options常用参数 options.add_argument('--disable-infobars') # 禁止策略化options.add_argument('--no-sandbox') # 解决DevToolsActivePort文件不存在的报错options.add ...
分类:Web程序   时间:2020-07-10 11:44:23    阅读次数:149
selenium源码分析
import warnings from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver from .remote_connection import ChromeRemoteConnection fro ...
分类:其他好文   时间:2020-07-10 11:25:17    阅读次数:76
python+selenium+unittest
1.login.py # -*- coding: utf-8 -*- from selenium import webdriver from time import sleep from selenium.webdriver.common.action_chains import ActionCha ...
分类:编程语言   时间:2020-07-10 09:28:52    阅读次数:97
selenium 模拟浏览器
http://www.testclass.net/selenium_python/mouse-event # class name里不能有空格,需要把空格替换成.悬停操作使用 from selenium.webdriver import ActionChains ActionChains(drive ...
分类:其他好文   时间:2020-07-06 15:57:25    阅读次数:66
二、web自动化快速使用
1、启动浏览器 from selenium import webdriver # 启动谷歌浏览器,依赖:先安装好chromedriver.exe驱动 # 方式1.当chromedriver放在python安装目录时 driver = webdriver.Chrome() # 方式2.通过execut ...
分类:Web程序   时间:2020-07-06 01:06:30    阅读次数:82
webdriver元素定位
如何知道自己所要用的元素的id/name/class等 打开自己的产品页面,F12检查元素,点击element 的tab,可以看到前端所用的方式是哪一种,你就用哪一种去定位元素;如下图:我的,用的就是class; WebElement element = driver.findElement(By. ...
分类:Web程序   时间:2020-07-05 21:28:21    阅读次数:89
商城注册
需求:对商城做注册操作 1 from selenium import webdriver 2 import time 3 4 5 # 对商城做注册和登录操作 6 # 启动浏览器Chrome 7 driver = webdriver.Chrome() 8 9 # 打开商城主页 10 11 driver ...
分类:其他好文   时间:2020-07-05 19:22:13    阅读次数:142
selenium--元素定位
定位界面元素 1、根据元素特征:id,name,class,tag,超链接 写法1: ele=driver.find_element_by_id('kw') 写法2: from selenium.webdriver.common.by import By ele=driver.find_elemen ...
分类:其他好文   时间:2020-07-03 23:25:03    阅读次数:86
2418条   上一页 1 ... 9 10 11 12 13 ... 242 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!