python selenium 不点击元素
我想点击日历,但不知何故它没有点击 (它位于三栏左侧)
driver.get('http://www.sse.com.cn/disclosure/bond/announcement/company/')
wait = WebDriverWait(driver, 50)
wait.until(EC.element_to_be_clickable((By.XPATH, "//div[@class='sse_searchInput']/input[@class='form-control sse_input']"))).click()
非常感谢!
I would like to click the calendar, but somehow it does not click
(it is on the three bar left-hand side)
driver.get('http://www.sse.com.cn/disclosure/bond/announcement/company/')
wait = WebDriverWait(driver, 50)
wait.until(EC.element_to_be_clickable((By.XPATH, "//div[@class='sse_searchInput']/input[@class='form-control sse_input']"))).click()
Many Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看该元素,则 inputBox 是只读属性,这就是它不允许输入任何值的原因。
要使其可输入日期,您可以从该元素中删除
readonly
属性,然后使用send_keys
输入日期。输出:
If you look at the element the inputBox is
readonly
attribute that's the reason its not allowing any value to enter.To make it available to enter the date you can removed the
readonly
attribute from that element and then enter the date usingsend_keys
.Output: