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 "); 线。
请建议。