在开始测试执行之前,我必须手动启动这个 WinAppDriver.exe。
我想在开始执行测试用例时自动执行此任务,它应该启动此 exe,完成后将关闭它。
我用下面的代码在Java中尝试过,但我没有成功:
Runtime runTime = Runtime.getRuntime();
String executablePath = "C:\\Program Files (x86)\\Windows Application Driver\\WinAppDriver.exe";
Process process = runTime.exec(executablePath);
注意:我需要使用“以管理员身份运行”来运行它