什么是Bootstrap压延机以及如何从Bootstrap日历中选择日期,该日期仅在使用Java的Selenium Web驱动程序中是只读的

时间:2019-02-18 09:43:09

标签: java selenium automation webdriver

我无法从日历中选择日期。我需要从日历中自动选择一个日期。我无法检查日历,因为当我单击日历时日历会自动消失。无法用硒编写代码。 这是我在应用程序中使用的日历。 enter image description here

1 个答案:

答案 0 :(得分:-1)

尝试一下。看看是否有帮助。

WebElement ele2=driver.findElement(By.xpath("//input[@id='seldatetext']"));
ele2.sendKeys("18-Feb-2019");
ele2.submit();