PDA

View Full Version : Not able to access input boxes on a web page



musicgold
11-17-2009, 10:56 AM
Hi,

I am trying to access the following website using VBA but for some reason I am not able to access any input on the webpage. What could be the reason?

The following are the portions of the page’s source code related to the access card box and password box.


< input size="14" maxlength="13" tabIndex="1" name="ConnectID" />

< input type="password" size="14" maxlength="8" tabIndex="2" name="Password" />

Thanks,

MG.

musicgold
11-19-2009, 06:55 AM
I don't know what happened to the link in the first post. Here is the link. (https://easyweb.tdcanadatrust.com/)

Crocus Crow
11-20-2009, 06:54 AM
That web site uses frames so you need to access the appropriate frame element.

musicgold
11-20-2009, 07:31 AM
Crocus Crow,

Thanks.