is not callable
Selenium, работаю в хром
уверен что у By.ID есть text
Да, щас на другом сайте попробовал, тоже самое check_element = wait.until(EC.visibility_of_element_located(By.ID("Title").text)) TypeError: 'str' object is not callable
button = wait.until(EC.visibility_of_element_located(By.ID("history-button"))).text print(button)
даже так ошибка button = wait.until(EC.visibility_of_element_located(By.ID("Title"))) TypeError: 'str' object is not callable
button = wait.until(EC.visibility_of_element_located(By.ID, "Title")) пробуй
не button = wait.until(EC.visibility_of_element_located(By.ID, "Title")) TypeError: __init__() takes 2 positional arguments but 3 were given
Обсуждают сегодня