Access session cookie in scrapy spiders
问题 I am trying to access the session cookie within a spider. I first login to a social network using in a spider: def parse(self, response): return [FormRequest.from_response(response, formname='login_form', formdata={'email': '...', 'pass':'...'}, callback=self.after_login)] In after_login , I would like to access the session cookies, in order to pass them to another module (selenium here) to further process the page with an authentificated session. I would like something like that: def after