シンプルなJava Seleniumコードを実行しようとしましたが、このエラーが発生しました。Java Seleniumコードのjava.net.MalformedURLException
import org.openqa.selenium.*;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class test
{
public static void main(String[] args)
{
stem.setProperty("webdriver.chrome.driver","D:/apache-jmeter-3.1/bin/chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.google.com/");
String Title = driver.getTitle();
//compare the actual title of the page with the expected one
if (Title.contentEquals("Google"))
{
System.out.println("Test Passed!");
}
else
{
System.out.println("Test Failed");
}
driver.close();
}
}
それは** URLが無効であることを意味し**。 URLは何ですか? –
私は** driver.get( "http://google.com"); ** –
@PrashanthNagendraとしてリンクを渡しました。 – DebanjanB