I'm trying to click on an element using selenium and make a calender pop up. I think that the "flex thingy" has something to do with this.
I'm trying to click on the "Date of Travel" button to make the calender pop up on this website: https://www.path2usa.com/travel-companion/
Here's my code
driver.get("https://www.path2usa.com/travel-companion/");
driver.findElement(By.id("form-field-travel_comp_date")).click();
For some reason, the calendar does not pop up.
I'm very new to this and I apologize if this sounds stupid. I'd really appreciate any help!