51Testing软件测试论坛

标题: 运行selenium打开浏览器后报错 [打印本页]

作者: fengzhulin    时间: 2012-1-18 16:55
标题: 运行selenium打开浏览器后报错
[attach]77133[/attach][attach]77133[/attach]
代码清单如下,但是运行时候报上面的错误,请问怎么解决呢
  1. package login;


  2. import org.testng.annotations.AfterMethod;
  3. import org.testng.annotations.AfterSuite;
  4. import org.testng.annotations.AfterTest;
  5. import org.testng.annotations.BeforeClass;
  6. import org.testng.annotations.BeforeMethod;
  7. import org.testng.annotations.BeforeSuite;
  8. import org.testng.annotations.BeforeTest;
  9. import org.testng.annotations.Test;
  10. import com.thoughtworks.selenium.*;
  11. import com.beust.testng.*;
  12. import java.util.regex.Pattern;
  13. import  sun.io.*;
  14. import sun.nio.cs.ext.*;

  15. public class Firefox extends SeleneseTestNgHelper {
  16.         @BeforeClass
  17.         public void setUp() throws Exception {
  18.                 selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://www.csdn.net/");
  19.                 selenium.start();
  20.         }
  21.         @Test
  22.         public void test222() throws Exception {
  23.                 //selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://www.csdn.net/");
  24.                 //selenium.start();
  25.                 selenium.open("http://www.163.com");
  26.                 selenium.click("link=abc");
  27.                 selenium.stop();
  28.         }

  29.        
  30.              
  31.     }

复制代码

作者: 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