在日期字段中输入日期

时间:2017-12-20 01:05:56

标签: python selenium-chromedriver

我需要将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'

如何输入此日期的日期?

0 个答案:

没有答案