import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;
public class Rc {
public static void main(String[] args) {
Selenium selenium = new DefaultSelenium("localhost",4444 ,"firefox", "http://gmail.com" );
selenium.start();
}
}
Можете ли вы помочь мне решить эту проблему
Отображается ошибка:
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
Selenium cannot be resolved to a type
DefaultSelenium cannot be resolved to a type
at Rc.main(Rc.java:7)