webdriver2.0 如何获得日期控件中的值,并把值赋给文本框
小弟初学webdriver2.0。请问各位大侠如何把日期控件中选中的日期,赋给文本框。小弟用下列方法不行。在线等高手解决!!谢谢!!
//Get main iframe
driver.switchTo().frame("main");
//Access to the text box id
driver.findElement(By.id("dpTodayInput")).click();
Thread.sleep(2000);
//Access to a specific date in the date control
driver.findElement(By.xpath("//td[@onclick='day_Click(2012,5,15);']")).click(); driver.findElement(By.xpath("//td[@onclick='day_Click(2012,5,15);']")).click();
不是这样写的吧,哪有可能一下子就点出日期啊,当然是根据你的动作分别选出年月日啦。。你用IDE录制一下会方便很多。
页:
[1]