Hi

I am trying to automate the tasks I do on a website using VBA. The site needs its users to login using a pair of username and password. I am not sure how I can go about automating my tasks here because,

1. Unlike other sites I have worked before, this site’s address bar keeps showing the same address, even when I navigate through different pages of the site. For example, the address bar keeps showing something like http://www.XYZfinancials.com/v-hom.asp ( a fake address) .
Therefore I am not able to use the typical ObjIE.navigate
method to navigate using VBA.


2. When I hover the mouse pointer on certain links on a page it at the bottom of the page it shows something like:
 
javascript:MenuItemSelected(document.getElementById("2_2"),%20true); or
javascript:goBack() 

Why is this website different than a typical website?


Thanks,

MG.