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
In a HTML form GET submit, the URL must ignore query string.
<!-- index.html --> <form id="form" method="GET"> <input type=text name=field /> <button type="submit">Submit</button> </form>
browser = RoboBrowser(parser="lxml") browser.open("http://localhost:8000/") form = browser.get_form("form") form["field"] = "value" browser.submit_form(form) # browser.url == "http://localhost:8000/?field=value" form = browser.get_form("form") form["field"] = "other" browser.submit_form(form) # browser.url == "http://localhost:8000/?field=value&field=other"
The url must be http://localhost:8000/?field=other, removing previous query string.
http://localhost:8000/?field=other
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In a HTML form GET submit, the URL must ignore query string.
The url must be
http://localhost:8000/?field=other
, removing previous query string.The text was updated successfully, but these errors were encountered: