我正在尝试从下拉日历中选择一个日期。 我似乎无法选择正确的元素。
Start_date = driver.find_element_by_xpath("//*[@id='inputStartInterval']/input")
ActionChains(driver).move_to_element(Start_date).click('on_element=Start_date').key_down(Keys.CONTROL).send_keys('a').key_up(Keys.CONTROL).perform()
HTML输入class =“ form-control ng-untouched ng-pristine ng-invalid date-time-range-picker” type =“ text”
我使用动作链的原因是因为sendkeys返回的元素不可交互。
错误堆栈:-
Command.MOVE_TO,{'element':to_element.id}))
AttributeError:'str'对象没有属性'id'