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
I am planning to add default timeout to all of my test scenarios (which has multiple Given, When, Then); not planning to add timeouts to individual Given, when, then functions. More specifically looking for a way to add a global timeout.
My all test scenarios are running in parallel (multiple threads)
Using Java 8 and Appium.
Any leads would be much appreciated.
The text was updated successfully, but these errors were encountered:
It is not possible to set a global timeout in Cucumber. It is impossible to get the semantics and clean correctly without adding a large amount of complexity to Cucumber (#1694). So instead consider using a library dedicated to waiting, or using existing time-out functionality (e.g. in WebDriver), or re-factoring your system under test to support timeouts, ect.
I am planning to add default timeout to all of my test scenarios (which has multiple Given, When, Then); not planning to add timeouts to individual Given, when, then functions. More specifically looking for a way to add a global timeout.
Any leads would be much appreciated.
The text was updated successfully, but these errors were encountered: