in reply to Re: Script to scrap data
in thread Script to scrap data

That was my first thought, however when I went to that website and looked at Network traffic in Developer Tools, it showed that it is making two ajax requests. Both of them using this URL: https://desmace.com/wp-admin/admin-ajax.php?action=get_wdtable&table_id=414

Interestingly, when I copied and pasted this address to see what is being downloaded, it showed nothing. Why is that?

Replies are listed 'Best First'.
Re^3: Script to scrap data
by marto (Cardinal) on Dec 02, 2024 at 13:40 UTC

    You're not posting anything along with that request, it's unlikely to perform any action without parameters. You can see what's being sent by clicking the row in question then selecting 'Request' in the right hand pane, listing all of the parameters and values, or right click the row in question -> 'Copy Value' and looking at all the options provided.

      Oh, I see! Thanks! I learned something.