I want to try filling out the form on this page: https://konzinfoidopont.mfa.gov.hu. However, when I try to select the dropdown menu and click it, I get the following error:
selenium.common.exceptions.ElementNotInteractableException: Message: .
This is the mentioned button:
<button class="btn btn-sm btn-primary dropdown-toggle w-100" data-toggle="modal" data-target="#modal2">Helyszín kiválasztása</button>
And my code yet:
from selenium import webdriver
from selenium.webdriver.common.by import By
import time
url = "https://konzinfoidopont.mfa.gov.hu"
driver = webdriver.Safari()
driver.get(url)
time.sleep(5)
elem = driver.find_element(By.CSS_SELECTOR, "#label1 > button")
elem.click()