Reputation: 41
Is it possible to srite something in fields with scrapy ?
For example I want to write my username and password in these fields.
Upvotes: 1
Views: 46
Reputation: 175
I suggest you use the scrapy.http.FormRequest
class.
Here's the documentation for it: http://doc.scrapy.org/en/latest/topics/request-response.html#formrequest-objects
Upvotes: 1