python selenium - Element is not currently interactable and may not be manipulated

前端 未结 6 1965
庸人自扰
庸人自扰 2021-01-17 11:59

I am trying to populate form fields via selenium in python:

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains

         


        
6条回答
  •  终归单人心
    2021-01-17 12:53

    Use a wait function before the element that gave the error.

    The webdriver is trying to interact with an element not completely loaded.

提交回复
热议问题