kevvukeka
08-20-2013, 12:35 AM
Hi All,
I am trying to login to my company website and open an application from list a 15 icons..
My present code login into the website my username and pw.
In the next scree I have a page with around 15 icons. Few of them are icons for applications and few are links to server located files. All these are click enabled(an image with a name under it),when you hover the mouse over an image, the image gets enlarged also. In this I need to click on the one that has the text "Claims as its name".
I don't know how to list all the clickable objects on a webpage and select one..
I tried this:
For Each oHTML_Element In HTMLDoc.getElementsByTagName("input")
If oHTML_Element.Type = "Claims" Then oHTML_Element.Click: Exit For
Next
but no use..
Can any1 suggest me some way to move forward.
Thanks for your help..
I am trying to login to my company website and open an application from list a 15 icons..
My present code login into the website my username and pw.
In the next scree I have a page with around 15 icons. Few of them are icons for applications and few are links to server located files. All these are click enabled(an image with a name under it),when you hover the mouse over an image, the image gets enlarged also. In this I need to click on the one that has the text "Claims as its name".
I don't know how to list all the clickable objects on a webpage and select one..
I tried this:
For Each oHTML_Element In HTMLDoc.getElementsByTagName("input")
If oHTML_Element.Type = "Claims" Then oHTML_Element.Click: Exit For
Next
but no use..
Can any1 suggest me some way to move forward.
Thanks for your help..