s.find_element_by_xpath("//*[@id='container']/div/div[1]/div[1]/div[2]/div[2]/form/div/div/input").send_keys("car")
Приведенный выше код работает нормально
, но
cars=s.find_element_by_xpath("//*[@id='container']/div/div[1]/div[1]/div[2]/div[2]/form/div/div/input")
cars.send_keys("car")
Этот код выдает ошибку raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element is not attached to the page document
Таким образом, назначение переменных и вызов функций с переменными нехороший способ?