TA的每日心情 | 开心 2016-8-19 07:41 |
---|
签到天数: 15 天 连续签到: 2 天 [LV.4]测试营长
|
4#
楼主 |
发表于 2016-7-11 18:52:30
|
只看该作者
楼上 你好 大神 太感谢了 您刚才说的源码和报错信息 如下
package com.woniuxy.rc;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
import java.util.regex.Pattern;
public class agileBase {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4446, "*chrome", "http://192.168.0.240:9100/login");
selenium.start();
}
@Test
public void testAgileBase() throws Exception {
selenium.open("/login");
selenium.type("name=username", "15500001111");
selenium.type("name=password", "1");
selenium.click("//button[@type='submit']");
selenium.waitForPageToLoad("30000");
for (int second = 0;; second++) {
if (second >= 60) fail("timeout");
try { if (selenium.isElementPresent("link=鍗曚綅绠$悊")) break; } catch (Exception e) {}
Thread.sleep(1000);
}
selenium.click("link=绯荤粺璐︽埛绠$悊");
selenium.waitForPageToLoad("30000");
for (int second = 0;; second++) {
if (second >= 60) fail("timeout");
try { if (selenium.isElementPresent("//button[@onclick='popAdd()']")) break; } catch (Exception e) {}
Thread.sleep(1000);
}
selenium.click("//button[@onclick='popAdd()']");
for (int second = 0;; second++) {
if (second >= 60) fail("timeout");
try { if (selenium.isElementPresent("id=confirmAddBtn")) break; } catch (Exception e) {}
Thread.sleep(1000);
}
selenium.type("id=addPersonName", "test20160711");
selenium.type("id=addPersonTelephone", "15522222222");
selenium.type("id=addPwdF", "1");
selenium.type("id=addPwdT", "1");
selenium.click("id=confirmAddBtn");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
火狐打开的页面报错:
Firefox 无法在 chrome://src/content/RemoteRunner.html?sessionId=bd52b78b76dd497ca59224b3ac31f8ca&multiWindow=true&baseUrl=http://192.168.0.240:9100/login&debugMode=false&driverUrl=http://localhost:4446/selenium-server/driver/ 找到该文件。
启动selenium-server-standalone-2.47.1.jar包,cmd中的日志报错,请看附件:
F:\图像 7.png
好像意思是在jar包中找不到customProfileDirCUSTFFCHROME。。。
|
|