我发现使用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 driver合作过?
暂无答案!
目前还没有任何答案,快来回答吧!