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
The API for HTML attributes in the protocol is pretty bad. It returns the attributes as a list of strings in the form [key1, value1, key2, value2].
[key1, value1, key2, value2]
We can do better by providing a Map<String, String> and maybe even a proper type with typed properties for common HTML attributes.
Map<String, String>
The text was updated successfully, but these errors were encountered:
f20a93c
Add DOM extensions to retrieve attributes in a decent manner
d816035
Resolves: #30
No branches or pull requests
The API for HTML attributes in the protocol is pretty bad.
It returns the attributes as a list of strings in the form
[key1, value1, key2, value2]
.We can do better by providing a
Map<String, String>
and maybe even a proper type with typed properties for common HTML attributes.The text was updated successfully, but these errors were encountered: