inpt1 =ui.WebDriverWait(driver, 30).until(EC.element_to_be_clickable((By.XPATH,"//div[@class='DraftEditor-editorContainer']")))
print(len(inpt1))
inpt1.send_keys('hello')
使用上面的代码,我得到了of 的1输出,但是对于 send_keys 我得到了以下错误:lengthinpt1selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
我想将密钥发送到黄线包围的那个部分。
呼如林
相关分类