QQ群:136924235
论坛:http://bbs.shareku.com
对于移动或删除jobs,只需要简单地移动或删除%JENKINS_HOEM%\jobs目录。
对于修改jobs的名字,只需要简单地修改%JENKINS_HOEM%\jobs下对应job的文件夹的名字。
对于不经常使用的job,只需要对%JENKINS_HOEM%\jobs下对应的jobs的目录zip或tar后存储到其他的地方。...
分类:
Web程序 时间:
2014-05-25 01:09:27
阅读次数:
345
ctrl + element public void ctrl(String element){
Actions action=new Actions(driver);
driver.findElement(By.xpath(element)).click(); action.sendKeys...
分类:
Web程序 时间:
2014-05-24 00:52:48
阅读次数:
245
本章涉及Selenium WebDriver的所有接口。 Recommended Import
Style 推荐的导入风格如下:from selenium import webdriver
然后,你可以这样访问所有的类:webdriver.Firefoxwebdriver.FirefoxP...
分类:
编程语言 时间:
2014-05-21 19:50:51
阅读次数:
435
先用node安装下载selenium-standalone server并运行npm install
webdriverjsjava -jar
path/to/your/selenium-server-standalone-2.39.0.jar 创建test_webdriver.jsvar
webd...
分类:
Web程序 时间:
2014-05-21 12:11:58
阅读次数:
403
一方面是激励自己学习,另一方面是提高自己的英文水平。接下来的一段时间里,按照计划一个星期翻译一篇英文文章。内容:webdriver、selenium自动化相关来源:google搜索关键字
xxx test with selenium 或 xxx test with webdriver时间:2014-...
分类:
Web程序 时间:
2014-05-19 22:28:42
阅读次数:
412
selenium
WebDriver定位元素是通过findElement()和findElements()方法。findElement()方法返回一个基于指定查询条件的WebElement对象或是抛出一个没有找到符合条件元素的异常。findElements()方法会返回匹配指定查询条件的webEle...
分类:
其他好文 时间:
2014-05-17 13:01:19
阅读次数:
239
Function waitFn = new Function() {@Overridepublic
Boolean apply(WebDriver driver) { Point newPos =
page.getWDGAttrDetail().getLocation(); return newPo...
分类:
其他好文 时间:
2014-05-16 07:42:46
阅读次数:
259
当你想要通过webdriver导航到一个链接,正常的方式点是通过调用get方法:driver.get("http://www.google.com")Interacting
with the page在页面中的HTML元素。如果我们需要找到定位一个。那么webdriver提供了许多方法来寻找元素.....
分类:
编程语言 时间:
2014-05-15 09:50:11
阅读次数:
393
实现如何在浏览器中新开一个tab,并输入url.
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.Keys;
WebElement elem...
分类:
其他好文 时间:
2014-05-13 07:50:42
阅读次数:
216
1.通过浏览器的句柄来操纵窗口,得到句柄的方法 public String
getWindowHandle(){ String currentWindow = driver.getWindowHandle(); return
currentWindow; } 2.切换到最新的窗口 pub...
分类:
Web程序 时间:
2014-05-09 23:27:19
阅读次数:
406