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
I'm not sure if is the expected behavior, but calling the clear method from InputBox, only clears the last character.
Expected behavior: All the text of the input box should be cleared.
As a temporary workaround iterate all the characters and invoke the clear method.
const inputBox = new InputBox(workbench.locatorMap) const placeholderChars = (await inputBox.getPlaceHolder()).length for (let index = 0; index < placeholderChars; index++) { await inputBox.clear() }
Happy to contribute with a fix if the issue is confirmed.
Thank you for such amazing tool.
The text was updated successfully, but these errors were encountered:
@degrammer thanks for raising the issue.
You are right, it should clear the whole input rather than just a single character.
Any contributions are welcome!
Sorry, something went wrong.
Good to know. I will take a look then! 👍🏽
No branches or pull requests
I'm not sure if is the expected behavior, but calling the clear method from InputBox, only clears the last character.
Expected behavior:
All the text of the input box should be cleared.
As a temporary workaround iterate all the characters and invoke the clear method.
Happy to contribute with a fix if the issue is confirmed.
Thank you for such amazing tool.
The text was updated successfully, but these errors were encountered: