You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
SAUCE SERVICE is not updating the job when the test fails inside the before hook.
We try to open a page with an specific timeout, after that timeout the test fails but the sauce labs job is not updated.
if wdio testrunner, running synchronous or asynchronous tests: synchronous
Additional wdio packages used (if applicable): Mocha
Details
We have a 40 concurrency suit and some pages never finish loading. Using browser.timeouts('page load',60000); and the retries we skip that problem. if the page fails to load , the sauce service update_job is not called and the saucelabs test is marked as success.
From @trinckler on August 15, 2017 17:53
The problem
SAUCE SERVICE is not updating the job when the test fails inside the before hook.
We try to open a page with an specific timeout, after that timeout the test fails but the sauce labs job is not updated.
Environment
Details
We have a 40 concurrency suit and some pages never finish loading. Using browser.timeouts('page load',60000); and the retries we skip that problem. if the page fails to load , the sauce service update_job is not called and the saucelabs test is marked as success.
Link to Selenium/WebdriverIO logs
https://gist.github.com/trinckler/a6993afad9c175a5cb1b44d8107c1a29
https://gist.github.com/trinckler/399a46cc150762a875bbea26bfa41fd9
Code To Reproduce Issue [ Good To Have ]
describe(' describe text', () => {
before( () => {
browser.timeouts('page load', 900);
browser.url('http://webdriver.io/');
}, 3);
it('should be true', () => {
// something true
});
});
Copied from original issue: webdriverio/webdriverio#2243
The text was updated successfully, but these errors were encountered: