selenium
Qmen_Crow
Laugh every day!!!!
展开
-
selenium 错误集锦->ElementNotVisibleException
[error] Exception in thread “main” org.openqa.selenium.ElementNotVisibleException:Element is not currently visible and so may not be interacted with Command duration or timeout:27 millseconds原创 2017-07-22 16:31:56 · 1961 阅读 · 0 评论 -
selenium 错误集锦->f.QueryInterface is not a function
package Mail;import org.openqa.selenium.WebDriver;import org.openqa.selenium.firefox.FirefoxDriver;public class Login { public static void main(String[] args) { // TODO Auto-generated metho原创 2017-07-22 16:45:02 · 1407 阅读 · 0 评论 -
Selenium 启动IE浏览器常见问题
Selenium 启动IE常见问题问题描述:Selenium启动IE浏览器回放脚本缓慢,例如输入字符串:12345679 十分缓慢。解决方法:使用IE 32位驱动替换掉 IE 64位下载地址:https://www.seleniumhq.org/download/ 2.问题描述:无法正常启动IE浏览器,遇见org.openqa.selenium.SessionNotCr...原创 2018-02-28 21:46:08 · 3288 阅读 · 0 评论 -
Selenium 8种基本定位方式
Selenium 8种基本定位方式By IDBy xpathBy cssBy class NameBy nameBy tag nameBy link textBy partial link textBy ID定位元素使用ID是最常用定位页面中的元素(如果元素存在id的话),W3C标准推荐开发者提供元素id属性(区别其它元素,具有唯一性不可重复) 备注:建议一般元...原创 2018-04-17 22:49:07 · 2697 阅读 · 0 评论 -
Selenium 常见API封装
Selenium 常见API封装Selenium>PageBase.javaSelenium>PageBase.javaPageBase 这个作为所有page即网页的父类,主要封装了一些元素最基本操作例如:点击元素/睡眠等待/输入等常见操作;便于子类即页面直接调用封装的函数直接进行操作同时生成相关日志记录(ps:在此处Logger类是自己自定义的Log类,可以使用log4j 进行替...原创 2018-12-31 11:19:20 · 1118 阅读 · 0 评论