我需要将keys(变量值)发送到元素(带有显示'到期日期'的文本的文本框)下面
以下是html代码
<div class="input-calendar">
<input type="text" class="input-calendar-field" placeholder='Expiration
Date" value>== $0
使用exp_date=driver.find_element_by_class('input-calendar-field').send_keys(expdate)
,我收到以下错误。
AttributeError: 'WebDriver' object has no attribute 'find_element_by_class'
使用exp_date=driver.find_element_by_class('input-calendar-field').click()
,我收到以下错误。
AttributeError: 'WebDriver' object has no attribute 'find_element_by_class'
如何输入此日期的日期?