我发现可以使用 intellIJ 和 winium 驱动程序以某种方式进行 Windows 应用程序测试。但是,由于某种原因,我无法进行某些操作,例如单击元素。
例如,我拿了计算器,我试图点击“1”数字,但它不会点击。calc.exe 正在运行,但没有任何反应。
DesktopOptions options = new DesktopOptions();
options.setApplicationPath("C:\\Windows\\System32\\calc.exe");
WiniumDriver driver = new WiniumDriver(new URL("http://localhost:9999"), options);`
driver.findElementByClassName("One").click(); // this is not working
我也尝试过更改driver.findElementById("num1Button")
哪个是 AutomationId,但它也不起作用。
你们以前使用过 intellij 和 winium 驱动程序吗?