I'm using PHP and xpath to parse some HTML pages: in a previous issue (rif. Parsing an HTML page using curl and xpath in PHP), I've solved how to parse a page to extract some values.
Now I've another page in which, before to get the values I'd like to parse, I've to select a value (Venezia in the picture ..., in the combobox "Provincia" ... ), and then to click on a button ("CERCA" in the picture ...), before to get the values I'd like to parse (that are the numbers in red, green and yellow boxes in the page ....)
The url page is the follow
https://salute.regione.veneto.it/servizi/situazione-nei-pronto-soccorso
and here you're the image of the page after the selection and action described above
Is it possible, and how, in PHP, to simulate this HTML navigation sequence to obtain the HTML page than I've to parse?
