I've been struggling with this for a few days now, I was hoping I could find some help here!
I have a simple html page which has two frames. The frameset looks like :
<frameset rows=15%,*>
<frame src="frTop.html" name="frTop">
<frame src="frBot.html" name="frBot">
</frameset>
The frame "frTop" has a textbox and a button. When you input a value in that box and hit the button, it loads a URL into the frame "frBot".
The page that loads has some values in it, and one of them is a dynamic value (It doesn't change unless you manually change it in the page).
What I want to do is to load the URL, and pull that dynamic value into a variable/textbox/something that I can manipulate.
The idea being, I want to specify 100-200 values, visit each of those URLs, grab the value, and store it into a spreadsheet.
My biggest problem is that the URL being loaded is an external link, ie : I am not able to access the elements of that page using the getElementById("") command. (My knowledge of HTML is limited, so I am not sure if this approach would work or not).
Additional Info : The dynamic element I want has the following segment of code in the HTML of the external page.
<span class="status"></span>
Thanks in Advance, Sai