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 have this form:
<form method="POST"> <button name="foo" value="1">Submit</button> (some other fields etc...) </form>
When I do this:
browser.find_by_name('foo').first.click()
On the server I can see that the submitted POST data is missing the field "foo".
I'm using splinter[django]==0.11.0 with Python 3.7 but I recall this happening about a year ago also.
The text was updated successfully, but these errors were encountered:
Hey @andrewsmedina, could I help in this issue? Where would I start looking?
Sorry, something went wrong.
@sukhbeersingh your help are welcome. I believe that tho fix this issue we should improve the lxmldriver (the driver that django extends) serialize method to get data from the button elements: https://github.com/cobrateam/splinter/blob/master/splinter/driver/lxmldriver.py#L47
lxmldriver
serialize
button
No branches or pull requests
I have this form:
When I do this:
browser.find_by_name('foo').first.click()
On the server I can see that the submitted POST data is missing the field "foo".
I'm using splinter[django]==0.11.0 with Python 3.7 but I recall this happening about a year ago also.
The text was updated successfully, but these errors were encountered: