- sunita
- Posts : 1
Join date : 2015-07-08
JQuery DatePicker
Wed Jul 08, 2015 4:45 pm
How to handle date picker issues. My code is not working every time I execute it.
Attached file is the date picker which I am working on. I have to change the year and month and then select a date.
//Select Date in date picker
//Click to the placeholder(input box) first after which the date picker will displayed
WebElement date=driver.findElement(By.id("CommonHeaderContentPlaceHolder_txttimedate"));
date.click();
//select year from date picker
Select year=new Select(driver.findElement(By.xpath(".//*[@id='ui-datepicker-div']/div/div/select[2]")));
year.selectByVisibleText("2013"); //the date picker bydefault takes current year(2015), i need to change it to 2013.
Thread.sleep(500);
WebElement selectDate=driver.findElement(By.xpath(".//*[@id='ui-datepicker-div']/table/tbody/tr/td/a[text()='16']"));
selectDate.click();
Thread.sleep(500);
Attached file is the date picker which I am working on. I have to change the year and month and then select a date.
//Select Date in date picker
//Click to the placeholder(input box) first after which the date picker will displayed
WebElement date=driver.findElement(By.id("CommonHeaderContentPlaceHolder_txttimedate"));
date.click();
//select year from date picker
Select year=new Select(driver.findElement(By.xpath(".//*[@id='ui-datepicker-div']/div/div/select[2]")));
year.selectByVisibleText("2013"); //the date picker bydefault takes current year(2015), i need to change it to 2013.
Thread.sleep(500);
WebElement selectDate=driver.findElement(By.xpath(".//*[@id='ui-datepicker-div']/table/tbody/tr/td/a[text()='16']"));
selectDate.click();
Thread.sleep(500);
- seluserqwb1Active particpant
- Posts : 20
Join date : 2015-06-29
Re: JQuery DatePicker
Wed Jul 08, 2015 8:11 pm
Please post your question in official webdriver forum -
www.seleniumtests.com/p/selenium-2-forum.html
www.seleniumtests.com/p/selenium-2-forum.html
Permissions in this forum:
You cannot reply to topics in this forum