-1
package com.html;

import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;

import junit.framework.TestCase;

public class Html5 extends TestCase{`enter code here`
    Selenium selenium1;
    public void setUp()
    {
        selenium1=new DefaultSelenium("localhost",4444,"*firefox","http://live.com");
        selenium1.start();
    }
}

com.thoughtworks.selenium.DefaultSelenium 中出现错误;和 DefaultSelenium("localhost",4444,"*firefox"," http://live.com "); 线。

请建议。

4

2 回答 2

1

第一的 :

字符串在那里做什么enter code here

第二 :

import com.thoughtworks.selenium.DefaultSelenium;如果和 中有错误new DefaultSelenium,那肯定是 jar 不在您的类路径中

selenium-server-standalone包含 Selenium 服务器类,但不包含客户端类,其中DefaultSelenium is. 您必须将客户端 jars 带入您的类路径中,这就是selenium2-java我认为的这个版本

于 2013-02-15T08:53:42.363 回答
0

我认为您需要在构造函数中为 firefox.exe 提供路径..所以

selenium1 = new DefaultSelenium("localhost",4444,"*firefox","http://live.com");   Goes like
selenium1 = new DefaultSelenium("localhost",4444,"*firefox C:\Documents and Settings\Mozilla Firefox\firefox.exe","http://live.com");

试试这个。

于 2013-02-15T09:30:41.037 回答