--
http://appium.io
---
You received this message because you are subscribed to the Google Groups "Appium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to appium-discus...@googlegroups.com.
Visit this group at http://groups.google.com/group/appium-discuss.
For more options, visit https://groups.google.com/groups/opt_out.
--
http://appium.io
---
You received this message because you are subscribed to a topic in the Google Groups "Appium-discuss" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/appium-discuss/UCSNlI3N5Cs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to appium-discus...@googlegroups.com.
capabilities.setCapability("record-video", true);
capabilities.setCapability("record-screenshots", true);
capabilities.setCapability("capture-html", true);
capabilities.setCapability("max-duration", 3600);
Are those Sauce only (as is "idle-timeout")? I looked at the mobile command map in controller.js and did not find analogs for them.
((JavascriptExecutor) driver).executeScript("mobile: setCommandTimeout", "{\"timeout\":\"30\"}");
and got the same result
((JavascriptExecutor) driver).executeScript("mobile: setCommandTimeout", 30);
((JavascriptExecutor) driver).executeScript("mobile: setCommandTimeout", "30");
And always got this exception
org.openqa.selenium.UnsupportedCommandException: Missing parameters: ["timeout"]
capabilities.setCapability(newCommandTimeout, 600);
--
http://appium.io
---
You received this message because you are subscribed to a topic in the Google Groups "Appium-discuss" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/appium-discuss/UCSNlI3N5Cs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to appium-discus...@googlegroups.com.
You received this message because you are subscribed to the Google Groups "Appium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to appium-discus...@googlegroups.com.
capabilities.setCapability("newCommandTimeout", 30);
((JavascriptExecutor) driver).executeScript("mobile: newCommandTimeout", 30);
For more options, visit https://groups.google.com/d/optout.