码迷,mamicode.com
首页 >  
搜索关键字:selenium 2    ( 6249个结果
3、selenium 实现鼠标移动到元素上,并操作元素(鼠标放上后才出现的元素)点击
1.获取鼠标将移动到的元素 List<WebElement> list1 = driver.findElement(By.id("AAA")).findElements(By.className("BBB")); WebElement we = list1.get(0);2.鼠标移动 action. ...
分类:移动开发   时间:2020-02-09 18:54:06    阅读次数:719
1、Selenium执行操作时高亮对象
package com.zengfh.testcase; import org.openqa.selenium.By;import org.openqa.selenium.JavascriptExecutor;import org.openqa.selenium.WebDriver;import o ...
分类:其他好文   时间:2020-02-09 18:22:57    阅读次数:70
2、selenium点击被页面上其他元素遮住的控件
使用WebDriver点击界面上Button元素时,如果当前Button元素被界面上其他元素遮住了,或没出现在界面中(比如Button在页面底部,但是屏幕只能显示页面上半部分),使用默认的WebElement.Click()可能会触发不了Click事件。 需加上browser.execute_scr ...
分类:其他好文   时间:2020-02-09 18:21:59    阅读次数:81
使用selenium模拟浏览器抓取淘宝信息
通过Selenium模拟浏览器抓取淘宝商品美食信息,并存储到MongoDB数据库中。 from selenium import webdriver from selenium.common.exceptions import TimeoutException from selenium.webdri ...
分类:其他好文   时间:2020-02-09 14:58:25    阅读次数:144
java+selenium+new——模拟鼠标悬浮操作——action类
package rjcs; import java.util.*; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium. ...
分类:编程语言   时间:2020-02-09 10:07:19    阅读次数:118
java+selenium+new——模拟键盘操作——复制、粘贴——action类
package rjcs; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefo ...
分类:编程语言   时间:2020-02-09 10:02:05    阅读次数:91
java+selenium+new——判断某个元素是否显示 driver.findElementById("kw").isDisplayed()——判断某个元素是否可用 System.out.println(driver.findElementById("kw").isEnabled())
package rjcs; import java.util.*; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium. ...
分类:编程语言   时间:2020-02-09 09:48:07    阅读次数:81
java+selenium+new——元素属性值以及其它基本使用方法
package rjcs; import java.util.*; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium. ...
分类:编程语言   时间:2020-02-09 09:47:41    阅读次数:100
java+selenium+new——模拟鼠标右键操作——action类
package rjcs; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefo ...
分类:编程语言   时间:2020-02-09 09:25:51    阅读次数:107
6249条   上一页 1 ... 80 81 82 83 84 ... 625 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!