How do I pass idleTimeout in PHPUnit?
Hi Mark!
In order to pass idleTimeout, you can use the below idleTimout
capability in your PHPUnit test scripts.
"$capability = array(
""browserName"" => ""Chrome"",
""browserVersion"" => ""15.0"",
""LT:Options"" => array(
""username"" => ""LT_USERNAME"",
""accessKey"" => ""LT_ACCESS_KEY"",
""platformName"" => ""MacOS Monterey"",
""idleTimout"" => ""125"",
""project"" => ""Untitled""
)
); "