You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there is the submit button element with name _submit inside the login form, which is not being included in the posting, but it is required for the login to be successful (tested)
The problem is that the lxml method form.form_values() alone does not include all the involved fields in the form. Seems it only includes the input elements.
The text was updated successfully, but these errors were encountered:
@kalessin check the code on scrapy.http.request.form, it has support for submitting values of clickable elements (which works like that by default unless dont_click is passed). You may be able to get some ideas from there to submit a PR to fix this.
There's a lot of code in that module though, probably much more than we need here, so only import strictly what you need.
In this login page, for example,
https://www.beyondtherack.com/auth/login
there is the submit button element with name _submit inside the login form, which is not being included in the posting, but it is required for the login to be successful (tested)
The problem is that the lxml method form.form_values() alone does not include all the involved fields in the form. Seems it only includes the input elements.
The text was updated successfully, but these errors were encountered: