This repository was archived by the owner on Jul 29, 2024. It is now read-only.
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
New_York time-zone not supported in default capabilities for Selenium/Saucelabs? #1287
Closed
Description
I don't know if this is an issue on the protractor side or the SauceLabs side, but I'm trying to change the time zone of a SauceLabs VM using defaultCapabilities in the protractor config file to EST (New_York):
exports.config.multiCapabilities = [_.assign({}, defaultCapabilities, {
"time-zone": "New_York",
"browserName": "firefox",
"version": "30"
}), _.assign({}, defaultCapabilities, {
"time-zone": "New_York",
"browserName": "chrome",
"version": "35",
"platform": "OS X 10.9"
})];
I receive an error that it is an unsupported time zone. When I pass in Chicago or Detroit, it works as expected. When I pass in New_York, it says it is unsupported. Thoughts?