谁会用selenium+junit?junit跑起来了。selenium服务器也开了!也没报错!但是不会执行selenium ide录制
.bat:java-jarD:\顽固病毒\jar\selenium\selenium全\selenium-server-standalone-2.7.0-patched....
.bat:
java -jar D:\顽固病毒\jar\selenium\selenium全\selenium-server-standalone-2.7.0-patched.jar -interactive
junit:
package com.test;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class test {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox D:\\mozilla firefox\\firefox.exe", "http://www.baidu.com/");
selenium.start();
}
@Test
public void testTest() throws Exception {
selenium.open("/");
selenium.type("id=kw", "selenium");
selenium.click("id=su");
selenium.waitForPageToLoad("30000");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
jar包
runs1/1 error 0 failure 0 展开
java -jar D:\顽固病毒\jar\selenium\selenium全\selenium-server-standalone-2.7.0-patched.jar -interactive
junit:
package com.test;
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class test {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox D:\\mozilla firefox\\firefox.exe", "http://www.baidu.com/");
selenium.start();
}
@Test
public void testTest() throws Exception {
selenium.open("/");
selenium.type("id=kw", "selenium");
selenium.click("id=su");
selenium.waitForPageToLoad("30000");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
jar包
runs1/1 error 0 failure 0 展开
1个回答
2013-05-07
展开全部
selenium rc 和 selenium IDE是两回事.
ide 是firefox的一个插件, 只能通过firefox来录制脚本, 录制完成的脚本可以在firefox上回放, 不能直接在rc server上跑, 需要先转化成可用的Rc代码, 然后放到testTest()里面才行.
ide 是firefox的一个插件, 只能通过firefox来录制脚本, 录制完成的脚本可以在firefox上回放, 不能直接在rc server上跑, 需要先转化成可用的Rc代码, 然后放到testTest()里面才行.
更多追问追答
追问
我录好之后另存为java,接着打开server,导入java文件和jar包,接着运行的。没错吧。。
追答
ide脚本不能直接另存为java, 两者格式不一样.
ide 默认是html格式, 比如java 版: selenium.open("/");
在ide里面却是:
open
/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |