Using selenium VBA, I am uploading some data and there is a date which I need to insert using datepicker. Here's the html of the webpage that has the datepicker https://pastebin.com/yqf8H36k
I tried to use SendKeys
to send the date directly but the datepicker popup appeared and nothing entered.
.FindElementById("date").SendKeys wsUpload.Range("B5").Value
.FindElementById("date").Click
Debug.Print .FindElementByXPath("//div[@role='period']").Attribute("innerHTML")
.FindElementByXPath("//div[@role='period']").Click
Any ideas...?