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
What happened: Using the Get Element Text endpoint returns the plain textContent of an element.
Get Element Text
textContent
What you expected to happen: For PlumaDriver to return results as recommended in the WebDriver spec.
How to reproduce it (as minimally and precisely as possible):
<html> <body> <div id="x"> <div id="y"> <div>A</div> <div>b</div> </div> </div> </body> </html>
Get the text of the div with id x (Expected: "A\nb", Received: "\n\nA\nb\n\n").
div
x
"A\nb"
"\n\nA\nb\n\n"
The text was updated successfully, but these errors were encountered:
Probably related:
Sorry, something went wrong.
No branches or pull requests
What happened:
Using the
Get Element Text
endpoint returns the plaintextContent
of an element.What you expected to happen:
For PlumaDriver to return results as recommended in the WebDriver spec.
How to reproduce it (as minimally and precisely as possible):
Get the text of the
div
with idx
(Expected:"A\nb"
, Received:"\n\nA\nb\n\n"
).The text was updated successfully, but these errors were encountered: