我已经开始学习 Winium 工具了。使用以下代码运行时:
public class CalcDemo {
public static void main(String[] args) throws MalformedURLException {
DesktopOptions options=new DesktopOptions();
options.setApplicationPath("C:\\Windows\\System32\\notepad.exe");
WiniumDriver driver=new WiniumDriver(new URL("http://localhost:9999"), options);
driver.findElementByClassName("Edit").sendKeys("This is sample test");
driver.close();
}
}
我收到以下错误:
"org.openqa.selenium.WebDriverException: The given path's format is not supported"
谁能帮我吗。
谢谢。