I try to read data from the homepage https://www.apg.at/emwebapgrem/AuctionResults.do with Matlab.
I already managed to filter the relevant type and date with the command
[str, ~] = urlread(['https://www.apg.at/emwebapgrem/AuctionResults.do?', ...
'auctionType=SECONDARY_CONTROL_POWER', ...
'&periodBegin.date=01.01.2014', ...
'&periodEnd.date=10.01.2014', ...
'&auctionOpenedFrom.date=', ...
'&auctionOpenedTo.date=', ...
'&doFilter=Filtern']);
Now I want Matlab to hit the Detail button on the homepage right next to the first auction and output the data of the first auction as a string. Any ideas how to make Matlab address the page that appears, when you hit the Detail button?
Thank you!!