以前に関連する問題が投稿され解決された後、 FireFox、Chrome & Internet Explorer。スレッド "main"の例外java.lang.IllegalStateException:webdriver.gecko.driverシステムによってドライバの実行可能ファイルへのパスを設定する必要があります
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Search {
public static void main(String[] args) throws InterruptedException {
WebDriver driver = new FirefoxDriver();
System.getProperty("webdriver.gecko.driver",
"C:\\Users\\nitin\\Downloads\\geckodriver-v0.18.0-
win64\\geckodriver.exe");
driver.get("http://www.wikipedia.org");
WebElement link;
link = driver.findElement(By.linkText("English"));
link.click();
Thread.sleep(5000);
WebElement searchbox;
searchbox = driver.findElement(By.id("searchInput"));
searchbox.sendKeys("Software");
searchbox.submit();
Thread.sleep(5000);
driver.quit();
これはOPの問題を解決するはずです。ありがとう – DebanjanB
私も.getPropertyを試してみましたが、エラーは同じです –