We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
locatorObject[locatorId + 'Wait'] = function (timeout, msg) { return drivex.waitForElementPromise(locator(), timeout || 5000, msg || 'Wait failed for locator [' + locatorId + ']'); }; locatorObject[locatorId + 'WaitVisible'] = function (timeout, msg) { return drivex.waitForElementVisiblePromise(locator(), timeout || 5000, msg || 'WaitVisible failed for locator [' + locatorId + ']');
If we don't provide a timeout value to the wait() method, the default timeout is only 5s, which sometime not long enough.
To have all that 5s default timeout to be config globally by a plugin arg will be great
The text was updated successfully, but these errors were encountered:
PR #82 raised for this.
Sorry, something went wrong.
No branches or pull requests
locatorObject[locatorId + 'Wait'] = function (timeout, msg) {
return drivex.waitForElementPromise(locator(), timeout || 5000, msg || 'Wait failed for locator [' +
locatorId + ']');
};
locatorObject[locatorId + 'WaitVisible'] = function (timeout, msg) {
return drivex.waitForElementVisiblePromise(locator(), timeout || 5000, msg || 'WaitVisible failed for locator [' + locatorId + ']');
If we don't provide a timeout value to the wait() method, the default timeout is only 5s, which sometime not long enough.
To have all that 5s default timeout to be config globally by a plugin arg will be great
The text was updated successfully, but these errors were encountered: