我想切换文件资源管理器和 Chrome 浏览器。
如何切换应用程序?
在我的代码中
@BeforeClass
public static void setup() {
try {
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("app", "C:\\Windows\\explorer.exe");
ExplorerSession = new WindowsDriver(new URL("http://127.0.0.1:4723"), capabilities);
ExplorerSession.manage().timeouts().implicitlyWait(2, TimeUnit.SECONDS);
actions = new Actions(ExplorerSession);
modules = new Modules(ExplorerSession);}
我可以生成新的会话吗?
我参考下一个链接
https://github.com/Microsoft/WinAppDriver/tree/v1.0#creating-a-desktop-session https://github.com/microsoft/WinAppDriver/blob/35a659232060a6e436cbb8393ae9a09bab12bc89/Samples/C%23/StickyNotesTest/StickyNotesSession 。CS
但我无法解决这个问题
Java 中没有足够的信息。
也没有找到 API 文档。请帮我。