Running my tests against Browserstack, I'm running into an issue where a .waitForElementVisible() assertion is failing after an absurd amount of time (64 seconds in my last attempt). The element is present within a second, but never becomes visible (I need it visible so I can click on it). Is there any way to get screenshots so I can see what Browserstack is seeing? I tried enabling the screenshots option, but nothing shows up in my screenshots/ directory.
"test_settings" : {
"default" : {
"selenium_port" : 80,
"silent": true,
"screenshots" : {
"enabled" : true,
"path" : "screenshots"
},
"desiredCapabilities": {
"browserName": "firefox",
"javascriptEnabled": true,
"acceptSslCerts": true,
"browserstack.user": "USER",
"browserstack.key": "KEY"
}
}
}
Is there any way to see what Browserstack sees? Similarly, do I have something just flat out wrong in my settings?
Thanks.