简体   繁体   中英

Select calendar button using selenium webdriver

I'm trying to select a calendar button. Here is my code:

driver.findElement(
   By.className("ui-datepicker-trigger ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only")
).click();

Primefaces日历与按钮

Html代码

实际上Selenium 不支持使用By.className()定位元素的复合类 ,你应该尝试使用By.cssSelector() ,如下所示: -

driver.findElement(By.cssSelector("button.ui-datepicker-trigger.ui-button[aria-label='Show Calendar']")).click();
driver.findElement(By.cssSelector("button.ui-datepicker-trigger.ui-button[aria-label='Show Calendar']")).click();

第二个日历标记

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM