Manish

11
reputation
3

driver.get("https://www.redbus.in/"); driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); driver.findElement(By.id("sign-in-icon-down")).click(); driver.findElement(By.id("signInLink")).click(); new WebDriverWait(driver, 20).until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.xpath("//div[@class='modal']//iframe[@class='modalIframe']"))); driver.findElement(By.id("mobileNoInp")).sendKeys("9891701139");

https://www.techbeamers.com/handle-date-time-picker-control-using-webdriver/


driver.findElement(By.id("txtOnwardCalendar")).click(); WebElement selectElement = (new WebDriverWait(driver, 10)).until(ExpectedConditions.presenceOfElementLocated(By.className("monthTable first"))); Select select = new Select(selectElement); select.selectByValue("2012"); Thread.sleep(6000); WebElement dateWidget = driver.findElement(By.id("monthTitle")); List columns011=dateWidget011.findElements(By.tagName("td")); for (WebElement cell: columns011){ //Select Month if (cell.getText().equals("Feb")){ cell.findElement(By.linkText("Feb")).click(); break; } }