Data selenium vba click

cgpa

New Member
Joined
Jan 23, 2023
Messages
11
Office Version
  1. 2007
Platform
  1. Windows
Hello guys
I'm trying to click on a calendar, select a date and move forward, I can even select the month and year, but I can't click on the day button to move forward

here is the code i am using


Sub ExtrairTabelaDaPagina()

Dim driver As New ChromeDriver


With driver
.Start
.Get "BDI"


Application.Wait Now + TimeSerial(0, 0, 3)


.FindElementByXPath("/html/body/div/div/div[1]/div/div/div[2]/div[1]/duet-date-picker/div/div[1]/button").Click

Application.Wait Now + TimeSerial(0, 0, 1)
.FindElementByXPath("/html/body/div/div/div[1]/div/div/div[2]/div[1]/duet-date-picker/div/div[2]/div/div[2]/div[1]/div[1]/select").Click "janeiro"
Application.Wait Now + TimeSerial(0, 0, 1)

.FindElementByXPath("/html/body/div/div/div[1]/div/div/div[2]/div[1]/duet-date-picker/div/div[2]/div/div[2]/div[1]/div[2]/select").Click "2023"
Application.Wait Now + TimeSerial(0, 0, 1)
.FindElementByXPath("/html/body/div/div/div[1]/div/div/div[2]/div[1]/duet-date-picker/div/div[2]/div").Click "23"



End With

End Sub
 

Attachments

  • calendar.png
    calendar.png
    15.1 KB · Views: 5

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Forum statistics

Threads
1,215,256
Messages
6,123,913
Members
449,132
Latest member
Rosie14

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