MeHDI RH
MeHDI RH

Reputation: 41

How do I write something in fields with scrapy?

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

Answers (1)

picklepirate28
picklepirate28

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

Related Questions