Using java to track auctions
Hi people,
I am trying to to write a auction tracking program to track swoopo auctions. I want to be able to keep track number of auctions with live update of current prices, and winning bidders, and time remaining especially.
After inspecting the source code, I found my original idea of just reading text from the page would not work as there is nothing to be read for time remaining. It only had something like this:
...
<div class="prd_countdown"><span id="counter_index_page_209566">--:--:--</span></div>
...
And now I believe I have to somehow get the information from the javascript file, which I have no idea how to do. I wonder if anyone can point me to the right direction.
Many thanks