我想从iframe中存在的jquery日期时间选择器中选择日期和时间。我已切换到框架并单击打开日期时间选择器的字段,但是我想从代码中发送值(例如发送键),但是我无法发送。我正在用python做。
这是我的html代码:
<div class="add_folder">
<form method="POST" action="some action url " id="add-attendance">
<table class="table_blue" >
<tr>
<td> <label for="start_time">Start Time</label></td>
<td><input type="text" value="" name="start_time" id="start_time"/></td>
</tr>
<tr>
<td> <label for="end_time">End Time</label></td>
<td> <input type="text" value="" name="end_time" id="end_time"/> </td>
</tr>
<tr>
我使用xpath做到了这一点,但对我却没有用。这是我发送密钥的硒代码:
driver.find_element_by_xpath('[@id="unowacalendar"]/div/div/table/tbody/tr[2]/td[5]').send_keys("2019-12-03")
答案 0 :(得分:1)
尝试定位输入元素。例如:
driver.find_element_by_id('start_time').send_keys('yourValue')
例如,您可能需要等待
WebDriverWait(driver, 5).until(EC.presence_of_element_located((By.ID , 'start_time'))).send_keys('yourValue')
其他进口:
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC