from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait as Wait
from selenium.webdriver.support import expected_conditions as EC
Wait(driver, 15).until(EC.presence_of_element_located((By.CSS_SELECTOR, 'td:nth-child(2)>input')))
driver.find_element(By.CSS_SELECTOR, 'td:nth-child(2)>input').send_keys(element[0])
The portion HTML script with CSS searched of the website
Both codes are not working. Format looks correct.
Maybe CSS Selector seems to be the problem?
The ID attribute changes every time when there is a different input prior to this page
Code raising a TimeoutExceptionError