我有将应用程序置于后台超过10分钟的场景,但是十分钟后,我收到以下错误消息
org.openqa.selenium.NoSuchSessionException: A session is either terminated or not started (WARNING: The server did not provide any stacktrace information) Command duration or timeout: 0 milliseconds
如果我在后台运行该应用程序9分钟,则可以正常运行而没有任何问题
driver.runAppInBackground(Duration.ofMinutes(10));
我尝试使用 capabilities.setCapability(MobileCapabilityType.NEW_COMMAND_TIMEOUT,3600);
来解决此问题但是它也不起作用。