VBA - Web Automation Internet Explorer href issue

priyanshua

New Member
Joined
Jun 15, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi I am trying to automate a website through VBA , I am able to select or click items with id , but for one link id is not available , it contais href and class . Can someone please help me out . I have just started using VBA .

After inspect item this is the html part :


<DIV class=PSHYPERLINKACTIVE><A class=PSHYPERLINKACTIVE href="javascript:submitAction_win0(document.win0,'#ICWorkItem$10');">Absence Request from 149394 </A></DIV>


Hear is my code :


set obj=CreateObject("InternetExplorer.Application")
obj.Navigate("http://hrms.bankofindia.co.in:8050/...EFAULT&cmd=login&errorCode=106&languageCd=ENG")
obj.Visible=True

WScript.Sleep(1000)

obj.Document.all.Item("userid").Value = "168721"
obj.Document.all.Item("pwd").Value = "VVVVV5"
obj.Document.all.Item("Submit").click
WScript.Sleep(10000)
obj.Document.all.Item("pthdr2wl").click
WScript.Sleep(1000)




For Each ele In obj.document.getElementsByTagName("a")
If ele.innerText = "Absence Request from 149394" Then ele.Click
Next
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Try one of these:
VBA Code:
For Each ele In obj.document.getElementsByTagName("a")
   If ele.innerText = "Absence Request from 149394 " Then ele.Click  'space at end, as shown by your HTML
Next
VBA Code:
obj.document.querySelector("A.PSHYPERLINKACTIVE").Click
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,958
Members
449,096
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top