Posts

Showing posts from 2021

Handle bootstrap date picker using selenium java

Image
Select date " 4/mar/2021" from the calendar Step 1: Open this URL in your chrome browser and run this URL for demo date picker https://www.seleniumeasy.com/test/bootstrap-date-picker-demo.html   Step 2: Copy the xpath of date picker element xpath =  //*[@id="sandbox-container1"]/div/span/i Step 3: Copy the xpath of  element from where we will year and month table xpath = /html/body/div[3]/div[1]/table/thead/tr[2]/th[2]  Step : 4 Copy the xpaths of  year table, month table and date table Year table xpath = /html/body/div[3]/div[3]/table/tbody  Moth table xpath = /html/body/div[3]/div[3]/table/tbody/ Date table xpath = /html/body/div[3]/div[1]/table/tbody Sample example Code : package com.qatips; import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; public class SelectDate { static WebDriver driver; public static void main(String...