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
Originally by @Artur-
If you try to do
Assert.assertEquals(tbElement,otherWebElement)
it will always fail because tbElement does not implement equals
On the other hand, if you do
Assert.assertEquals(otherWebElement,tbElement)
it will succeed if the references point to the same element, because RemoteWebElement implements equals and unwraps any wrapped element.
Imported from https://dev.vaadin.com/ issue #18484
The text was updated successfully, but these errors were encountered:
https://dev.vaadin.com/review/#/c/14623/1
Sorry, something went wrong.
No branches or pull requests
Originally by @Artur-
If you try to do
it will always fail because tbElement does not implement equals
On the other hand, if you do
it will succeed if the references point to the same element, because RemoteWebElement implements equals and unwraps any wrapped element.
Imported from https://dev.vaadin.com/ issue #18484
The text was updated successfully, but these errors were encountered: