fengzhulin 发表于 2012-1-18 16:55:15

运行selenium打开浏览器后报错


代码清单如下,但是运行时候报上面的错误,请问怎么解决呢
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;
importsun.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:30

对 selenium 支持最好的应该是ff
不建议使用ie。

另外,看了下,觉得JS会不会有问题,请核实下代码

gaha 发表于 2012-1-21 16:46:13

这应该是页面的错误吧,如果是se的问题,应该报在IDE里啊。你确保其他的网站会报错吗?
页: [1]
查看完整版本: 运行selenium打开浏览器后报错