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
Trying to run a single test with run-multiple, on a single chrome browser just to validate the functionality of retries and only.
What do you get instead?
There are multiple issues here:
retry and only don't mix together as it seems like the test doesn't actually get retried multiple times, if you only have retry the test will get retried multiple times ref other issue raised: Retry can't be used with Only #1256
We're also using mochawesome reporter with unique screenshots, when both rety and only are set, the additional context where the screenshot would be attached is not there (even though the screenshot is taken)
Provide test source code if related
Feature('Failing').retry(3);Scenario.only('Failing test @live @desktop',(I)=>{I.amOnPage('/');I.see('this is going to fail');});
What are you trying to achieve?
Trying to run a single test with
run-multiple, on a single chrome browser just to validate the functionality ofretriesandonly.What do you get instead?
There are multiple issues here:
retryandonlydon't mix together as it seems like the test doesn't actually get retried multiple times, if you only haveretrythe test will get retried multiple times ref other issue raised: Retry can't be used with Only #1256retyandonlyare set, the additional context where the screenshot would be attached is not there (even though the screenshot is taken)Details
Basic example config file