上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 88 下一页
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-12-13 10:35 热爱技术的小牛 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.使用Thread.sleep(),这是最笨的方法,但有时候也能用到而且很实用。 2.隐示等待,隐性等待是指当要查找元素,而这个元素没有马上出现时,告诉WebDriver查询Dom一定时间。默认值是0,但是设置之后,这个时间将在WebDriver对象实例整个生命周期都起作用。 WebDriver  阅读全文
posted @ 2017-12-12 22:01 热爱技术的小牛 阅读(1022) 评论(0) 推荐(0) 编辑
摘要: 前言: 在工作当中我们往往遇到很多文件的操作,我们也习惯写一些自己定义的工具类来简化文件操作,其实apache的commons的FileUtils类就是这样一个工具类,使用它能大大的简化我们对文件的操作。 准备工作: 1.下载jar 地址:http://commons.apache.org/prop 阅读全文
posted @ 2017-12-12 21:27 热爱技术的小牛 阅读(21820) 评论(0) 推荐(1) 编辑
摘要: package my_automation; import java.awt.Dimension; import java.sql.Time; import java.util.HashMap; import org.openqa.selenium.Point; import org.openqa.selenium.WebDriver; import org.openqa.selenium.... 阅读全文
posted @ 2017-12-12 16:26 热爱技术的小牛 阅读(3185) 评论(0) 推荐(0) 编辑
摘要: 最大化 方法一 //指明ChromeDriver路径 System.setProperty(Src_url_string.Chrome_Driver, Src_url_string.Driver_address); //加载用户配置文件 ChromeOptions options=new ChromeOptions(); //启动就最大化 options.addArguments("--star... 阅读全文
posted @ 2017-12-12 16:10 热爱技术的小牛 阅读(1412) 评论(0) 推荐(0) 编辑
摘要: 那么要想selenium成功的操作chrome浏览器需要经历如下步骤: 1、下载ChromeDriver驱动包(下载地址: http://chromedriver.storage.googleapis.com/index.html?path=2.7/ 注意阅读note.txt下载与自己所使用浏览器一 阅读全文
posted @ 2017-12-12 15:19 热爱技术的小牛 阅读(785) 评论(0) 推荐(0) 编辑
摘要: package my_automation; import java.awt.Dimension; import org.openqa.selenium.Capabilities; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.sel... 阅读全文
posted @ 2017-12-12 14:53 热爱技术的小牛 阅读(2347) 评论(0) 推荐(0) 编辑
摘要: Cannot find firefox binary in PATH. Make sure firefox is installed. OS appears to be: VISTA Build info: version: '3.8.1', revision: '6e95a6684b', time 阅读全文
posted @ 2017-12-12 11:17 热爱技术的小牛 阅读(1710) 评论(1) 推荐(1) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-12-11 16:03 热爱技术的小牛 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 我定义了带有yield的函数,调用是报错: mygenerator().next()AttributeError: 'generator' object has no attribute 'next' 原因是在python 3.x中 generator(有yield关键字的函数则会被识别为gener 阅读全文
posted @ 2017-12-11 15:57 热爱技术的小牛 阅读(772) 评论(0) 推荐(0) 编辑
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 88 下一页
热爱技术的小牛