from time import sleep from selenium.webdriver import ActionChains from selenium.webdriver import ChromeOptions from webdriver_setup import get_webdriver_for from selenium import webdriver options = ChromeOptions() driver = webdriver.Chrome(options=options, executable_path="/Users/uuuuuuuuuuuser/.wdm/drivers/chromedriver/mac64_m1/101.0.4951.41/chromedriver") driver.get("https://rlan.ctu.cz/cs/") #cookieska driver.add_cookie({"name": "app", "value": "asdfasdf"}) driver.refresh() sleep(2) pridat = driver.find_element_by_css_selector("a[href*='registration-stations']") actions = ActionChains(driver) actions.click(pridat).perform() sleep(2) pridat = driver.find_element_by_css_selector("a[href*='vytvorit-ap']") actions = ActionChains(driver) actions.click(pridat).perform() sleep(2) pridat = driver.find_element_by_id("station-name") #actions = ActionChains(driver) #actions.click(pridat).perform() pridat.send_keys('Nějaké hovno') sleep(200) driver.quit()