我想点击日历的一天(无论哪一天),如果有的话
有几天是可用的,有些则不是。
日历使用table
标记制作,每个td
标记如果不可用,则会有notSelectableDay
类。
我必须重新加载页面,直到程序找到具有类selectableDay
的可用日期。
程序结构在我提出的另一个问题if else loop on Python. Checking a class name with Selenium
中这可行吗?
if driver.find_elements_by_class_name("selectableDay"):
driver.find_element_by_class_name("selectableDay").click()
我更清楚地解释了另一个问题:
I got a calender picker. How to select the available day with Selenium and Python?
答案 0 :(得分:1)
以下是您可以从日历中选择所需日期的代码段。只需要传递您想要从日历中选择的日期。
from selenium import webdriver
def datepicker(date):
driverInstance = webdriver.Chrome()
driverInstance.get("http://www.seleniumframework.com/Practiceform/")
driverInstance.maximize_window()
driverInstance.find_element_by_id("vfb-8").click()
elements = driverInstance.find_elements_by_xpath(".//*[@id='ui-datepicker-div']/table/tbody/tr/td/a")
for dates in elements:
if(dates.is_enabled() and dates.is_displayed() and str(dates.get_attribute("innerText")) == date):
dates.click()
如果您想从日历中选择日期10,则传递字符串" 10"功能
示例:datepicker("10")
如果您有任何问题,请告诉我。
答案 1 :(得分:0)
elementos = driver.find_elements_by_class_name("calendarCellOpen")
while True:
if elementos:
driver.find_element_by_class_name("calendarCellOpen").click()
driver.find_element_by_id("ctl00_ContentPlaceHolder1_acc_Calendario1_repFasce_ctl01_btnConferma").click() #Confirm button
else:
driver.find_element_by_xpath("//input[@value='>']").click() #Forward the calendar
driver.find_element_by_xpath("//input[@value='<']").click() #Back the calendar
if elementos:
driver.find_element_by_class_name("calendarCellOpen").click()
driver.find_element_by_id("ctl00_ContentPlaceHolder1_acc_Calendario1_repFasce_ctl01_btnConferma").click() #Confirm button
也许这可以工作..而不是带有xpath的find_element,但我认为无论如何都会有效..