-
Notifications
You must be signed in to change notification settings - Fork 62
os_version
invalid error when trying to test iOS 13
#226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
iOS 13 is skipped for now due to a bug in browserstack-runner, see browserstack/browserstack-runner#226. IE 9 && iOS 10 are skipped because I can't get them to show any output, they just times out.
iOS 13 is skipped for now due to a bug in browserstack-runner, see browserstack/browserstack-runner#226. IE 9, iOS 10 & safari_previous are skipped because I can't get them to show any output, they just times out.
I have many more issues, actually. This one at least shows an error, although it'd be much easier to follow up if it showed the browser entry that's problematic. However, entries for iOS 10 & IE 9 just don't fire up for me at all. These ones: browsers: [
"ie_9",
{
"os": "iOS",
"os_version": "10.3",
"device": "iPhone 7",
"real_mobile": false
}
] I also tried a different iOS 10, same result: browsers: [
{
"os": "iOS",
"os_version": "10",
"device": "iPhone 7"
}
] For these browsers, I don't see any error when they get spawned, all I see is that they don't show up in the console and at the end I see a grouped error message; example:
You can see that in the |
I'm running into the same issue as well. It seems iOS 11, 13 and 14 are not considered valid, despite being listed at https://www.browserstack.com/automate/browsers.json and https://www.browserstack.com/list-of-browsers-and-platforms/js_testing.
Config:
|
Most of the Android versions don't seem to work either. I've tried many variations (with and without
"browsers": [
{
"device": null,
"os": "android",
"os_version": "11.0"
},
{
"device": null,
"os": "android",
"os_version": "10.0"
},
{
"device": null,
"os": "android",
"os_version": "9.0"
},
{
"device": null,
"os": "android",
"os_version": "8.0"
},
{
"device": null,
"os": "android",
"os_version": "7"
},
{
"device": null,
"os": "android",
"os_version": "6"
},
{
"device": null,
"os": "android",
"os_version": "5"
},
{
"device": null,
"os": "android",
"os_version": "4.3"
}
] In the builds overview I see:
And the others never show up. |
@Krinkle I believe os_version needs to be specified as '11.0' or '12.0' instead of '11' or '12' both on iOS as well as Android devices. |
#244 should have fixed the issue (though I haven't tested it personally). Closing. |
Expected Behavior
I'm trying to test iOS 11, 12 & 13; they should all spawn.
Actual Behavior
iOS 13 doesn't spawn.
Steps to Reproduce the Problem
browsers
field in the config:browserstack.json
Platform details
Details
With the above config I'm getting an error:
iOS 11 & 12 run then tests correctly, iOS 13 doesn't. I'm providing correct
os_version
&device
according to the v4 API.The text was updated successfully, but these errors were encountered: