このコードを実行するように見えることがあります。コンパイラはドライバをインスタンス化していません。これを修正するために私は何ができますか?タイプFirefoxDriverをインスタンス化できません
package mypackage;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;
org.openqa.selenium.support.ui.ExpectedConditions;
import
org.openqa.selenium.support.ui.WebDriverWait;
public class selenium {
public static void main(String[] args) {
WebDriver driver = (WebDriver) new FirefoxDriver();
WebDriverWait MyWaitlVar= new
WebDriverWait(driver, 10);
String baseUrl =
"http://newtours.demoaut.com";
String expectedTitle = "Welcome: Mercury Tours";
String actualTitle = "";
// launch Firefox and direct it to the Base URL
driver.get(baseUrl);
// get the actual value of the title
actualTitle = driver.getTitle();
/*
* compare the actual title of the page
witht the expected one and print
* the result as "Passed" or "Failed"
*/
if (actualTitle.contentEquals
(expectedTitle)){
System.out.println("Test Passed!");
} else {
System.out.println("Test Failed");
}
//close Firefox
driver.close();
// exit the program explicitly
System.exit(0);
}
}
コンパイラエラーとは何ですか?未解決のコンパイルの問題:\tタイプをインスタンス化できません mypackage.myclass.mainでFirefoxDriver \t(myclass.java:16) –
例外http://www.seleniumhq.org/docs/03_webdriver.jsp)サイトを参照してください。 – Ken
は([本]上の例を使用してみてくださいスレッド「メイン」でjava.lang.Errorで –