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

前端 未结 6 1995
庸人自扰
庸人自扰 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:33

    Sometimes it takes time to load the page. You can add wait statement. Try using "Thread.sleep(3000)"

提交回复
热议问题