Such methods as org.openqa.selenium.WebElement.click()
or org.openqa.selenium.interactions.Actions.click()
don't trigger any errors while running, but also the action of clicking doesn't happen. Tried using Javascript, but the element i'm trying to click appears to be unclickable (returns undefined in developer tools in Chrome)
Here is the html of the element
<div class="flatpickr-calendar animate showTimeInput arrowTop open" tabindex="-1" style="width: 245px; top: 719px; left: 1603.17px; right: auto;">
<div class="flatpickr-months">...</div>
<div class="flatpickr-innerContainer">
<div class="flatpickr-rContainer">
<div class="flatpickr-weekdays">...</div>
<div class="flatpickr-days" tabindex="-1" style="width: 245px;">
<div class="dayContainer">
<span class="flatpickr-day " aria-label="December 29, 2019" tabindex="-1">29</span>
</div>
</div>
</div>
</div>
</div>