Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
sunita
Posts : 1
Join date : 2015-07-08

JQuery DatePicker Empty 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);
JQuery DatePicker C:\Users\sunita\Desktop
avatar
seluserqwb1
Active particpant
Active particpant
Posts : 20
Join date : 2015-06-29

JQuery DatePicker Empty 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
Back to top
Permissions in this forum:
You cannot reply to topics in this forum