I need to get some information from a website that uses an HTML select to filter its content. However, i'm having difficulties doing so, since when changing the value from the select, the website does not 'reload' it uses some internal function to do get the new content.
The webpage in question is this and if I use the Chrome developer tools to see what happens when I change the value of the select. I get a call looking like this.
index.php?eID=dmmjobcontrol&type=discipline&uid=77&_=1535893178522
Interesting is, that the uid is the id of the option of the select, so we are getting the correct id. However, when I go to this link I just get a page saying null
.
Taking a similar website into account, this one. When I change the select form there, I get a form data which I can use to get the information I want.
I'm fairly new to scraping and honestly I don't understand how I can get this information. If it's for some use I'm using scrapy in python to parse the information from the websites.