1.获取CSV数据内容public static Object[][]
getFromCSV(String filename) { if (!(new File(filename)).exists()){ return null;
} Object[][] content; CSVReader r....
分类:
Web程序 时间:
2014-07-22 23:16:34
阅读次数:
467
欢迎光临娇娇家的美衣阁
http://shop105984718.taobao.com/标准的下拉列表为select类型封装方法public void select(String
xpath, String value){ Select s = new Select(driver.findEleme...
分类:
Web程序 时间:
2014-05-09 18:10:16
阅读次数:
520
行为驱动开发(BDD),依然高大上的矗立在远方,很少被人问津,一方面是BDD的思想不太容易理解,别一方面BDD的资料并不多。中文的资料就更少了,所以这里起个抛砖引玉的作用。
分类:
Web程序 时间:
2014-05-08 05:22:48
阅读次数:
708
按网上教程搭建好环境后,执行下面的代码出现了错误:测试代码如下:from selenium
import
webdriverdriver=webdriver.Firefox()driver.get("http://www.baidu.com")错误信息如下:Traceback
(most recen...
分类:
编程语言 时间:
2014-05-07 21:16:57
阅读次数:
420
webdriver
获取表格内的文案:先定位到表格,再使用getText()方法重新封装getText()方法,如下所示 public String getText(String
xpath){ WebElement e = driver.findElement(By.xpath(xpath));....
分类:
Web程序 时间:
2014-05-05 11:14:58
阅读次数:
304
1.目的:为了将元素的find方法和业务逻辑分开来。如果元素的页面位置发生了变化,只需改动一个文件,而不影响业务的实现。2.原理:一般一个页面对应一个class,在class里描述所有要用到的webelement。通过PageFactory.initWebElement(Webdriver
d,th...
分类:
其他好文 时间:
2014-04-30 17:58:23
阅读次数:
337
def highlight_element(self, locator):
"""docstring for highlight_element""" self._info("start") element =
self._element_find(...
分类:
Web程序 时间:
2014-04-30 03:28:21
阅读次数:
610
使用webdriver做UI自动化测试,driver.quit();方法貌似没能起作用,执行完成后,还是一堆页面和进程在。所以就只能简单粗暴地杀进程了public
void stop(){driver.quit();String name = null;try {name = getValue("d...
分类:
Web程序 时间:
2014-04-29 16:35:46
阅读次数:
609