51Testing软件测试论坛
标题:
运行selenium打开浏览器后报错
[打印本页]
作者:
fengzhulin
时间:
2012-1-18 16:55
标题:
运行selenium打开浏览器后报错
[attach]77133[/attach][attach]77133[/attach]
代码清单如下,但是运行时候报上面的错误,请问怎么解决呢
package login;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import com.thoughtworks.selenium.*;
import com.beust.testng.*;
import java.util.regex.Pattern;
import sun.io.*;
import sun.nio.cs.ext.*;
public class Firefox extends SeleneseTestNgHelper {
@BeforeClass
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://www.csdn.net/");
selenium.start();
}
@Test
public void test222() throws Exception {
//selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://www.csdn.net/");
//selenium.start();
selenium.open("http://www.163.com");
selenium.click("link=abc");
selenium.stop();
}
}
复制代码
作者:
archonwang
时间:
2012-1-21 10:27
对 selenium 支持最好的应该是ff
不建议使用ie。
另外,看了下,觉得JS会不会有问题,请核实下代码
作者:
gaha
时间:
2012-1-21 16:46
这应该是页面的错误吧,如果是se的问题,应该报在IDE里啊。你确保其他的网站会报错吗?
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2