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
Using a Django client, checkboxes are considered to be LxmlControlElements, where click then will submit the form: https://github.com//cobrateam/splinter/blob/986ce0a10c52f08196b32b91f752182cb7517892/splinter/driver/lxmldriver.py#L421-L433
click
I've used browser.find_by_id("id_foo").first.click(). The workaround is using browser.check("foo").
browser.find_by_id("id_foo").first.click()
browser.check("foo")
The text was updated successfully, but these errors were encountered:
I believe that to move the submit to inside the if self._control.get("type") == "submit": [0] bloc will fix this bug.
if self._control.get("type") == "submit":
[0] - https://github.com//cobrateam/splinter/blob/986ce0a10c52f08196b32b91f752182cb7517892/splinter/driver/lxmldriver.py#L424
Sorry, something went wrong.
No branches or pull requests
Using a Django client, checkboxes are considered to be LxmlControlElements, where
click
then will submit the form:https://github.com//cobrateam/splinter/blob/986ce0a10c52f08196b32b91f752182cb7517892/splinter/driver/lxmldriver.py#L421-L433
I've used
browser.find_by_id("id_foo").first.click()
.The workaround is using
browser.check("foo")
.The text was updated successfully, but these errors were encountered: