I want to scrapy this link
http://services.geospatial.org.tw/maploc/
I'd learned how to use scrapy to request a form
    yield FormRequest.from_response(response,
                                    formname=' ',
                                    formdata={ },    
                                    callback=self.parse)    
But this is use javascript to control the click (<input type="button" value="查詢" onclick="codeAddress()">)
 It didn't have form
 how can I do to scrpay this link??
 Please help me, thank you
 
    