Even though I am new to scrapy framework, I am able to write good spiders using scrapy. Recently I came across this page, where by entering address, and on submit I have to capture the latitude and longitude. Could any one help?
This code works for normal post requests:
return [FormRequest.from_response(response,
formdata={'username': 'john', 'password': 'secret'},
callback=self.after_login)]
But what about the ajax based form requests, like the above.