Hello,
I have a vbscript that launches a webbrowser, enters the name and password and clicks the submit button via: GetElementsbyTagname("BUTTON").item(0).click
Once my new page loads, I try to find any tags that have the '<td>' field in there by using: browser.Document.getElementsByTagName("td")
The problem is, even if I put a message string in between the click and the getElementsByTagName to ensure the page has fully loaded, I cannot find any elements with a <td> in there. If I save the second page to a file and load that, I can see the <td> flags.
My question, is there some kind of 'object refresh' command I need to execute in between page loads?
Thanks!
Barry
I have a vbscript that launches a webbrowser, enters the name and password and clicks the submit button via: GetElementsbyTagname("BUTTON").item(0).click
Once my new page loads, I try to find any tags that have the '<td>' field in there by using: browser.Document.getElementsByTagName("td")
The problem is, even if I put a message string in between the click and the getElementsByTagName to ensure the page has fully loaded, I cannot find any elements with a <td> in there. If I save the second page to a file and load that, I can see the <td> flags.
My question, is there some kind of 'object refresh' command I need to execute in between page loads?
Thanks!
Barry