您的位置:軟件測試 > 開源軟件測試 > 開源功能測試工具 > Selenium
Selenium webdriver操作日歷控件
作者:網(wǎng)絡(luò)轉(zhuǎn)載 發(fā)布時間:[ 2015/2/2 16:15:42 ] 推薦標(biāo)簽:Selenium 功能測試工具

  一般的日期控件都是input標(biāo)簽下彈出來的,如果使用webdriver 去設(shè)置日期,
  1. 定位到該input
  2. 使用sendKeys 方法
  比如:

  但是,有的日期控件是readonly的
  比如12306的這個
  <input id="train_date" class="inp-txt" type="text" value="2015-03-15" name="back_train_date" autocomplete="off" maxlength="10" readonly="readonly" disabled="disabled">
  這個時候,沒法調(diào)用WebElement的sendKeys()
  方案一:使用JS remove readonly attribute,然后sendKeys
  還是以萬惡的12306為例:
  使用出發(fā)日期,將input標(biāo)簽的readonly熟悉去掉
  JavascriptExecutor removeAttribute = (JavascriptExecutor)driver;
  //remove readonly attribute
  removeAttribute.executeScript("var setDate=document.getElementById("train_date");setDate.removeAttribute('readonly');") ;
  方案二:采用click直接選擇日期,日期控件是一個iframe,首先switch iframe,之后找到想要設(shè)置的日期button click,然后switch出來
  WebElement dayElement=driver.findElement(By.xpath("//span[@id='from_imageClick']"));
  dayElement.click();
  // WebElement frameElement=driver.findElement(By.xpath("//iframe[@border='0']"));
  driver.switchTo().frame(1);
  driver.findElement(By.xpath("//tr/td[@onclick='day_Click(2015,2,21);']")).click();
  driver.switchTo().defaultContent();
  具體代碼如下:
WebDriver driver=DriverFactory.getFirefoxDriver();
driver.get("https://kyfw.12306.cn/otn/");
driver.manage().window().maximize();
driver.manage().timeouts().pageLoadTimeout(60, TimeUnit.SECONDS);
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);
driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);
WebElement fromStation=driver.findElement(By.xpath("//input[@id='fromStationText']"));
fromStation.click();
fromStation.sendKeys("鄭州");
WebElement choseFrom =driver.findElement(By.xpath("//div/span[@class='ralign' and text()='鄭州']"));
choseFrom.click();
WebElement toStation=driver.findElement(By.xpath("//input[@id='toStationText']"));
toStation.click();
toStation.sendKeys("上海");
WebElement choseElement =driver.findElement(By.xpath("//div/span[@class='ralign' and text()='上海']"));
choseElement.click();
JavascriptExecutor removeAttribute = (JavascriptExecutor)driver;
//remove readonly attribute
removeAttribute.executeScript("var setDate=document.getElementById("train_date");setDate.removeAttribute('readonly');") ;
WebElement setDatElement=driver.findElement(By.xpath("//input[@id='train_date']"));
setDatElement.clear();
setDatElement.sendKeys("2015-02-18");
WebElement dayElement=driver.findElement(By.xpath("//span[@id='from_imageClick']"));
dayElement.click();
// WebElement frameElement=driver.findElement(By.xpath("//iframe[@border='0']"));
driver.switchTo().frame(1);
driver.findElement(By.xpath("//tr/td[@onclick='day_Click(2015,2,21);']")).click();
driver.switchTo().defaultContent();
WebElement searchElement=driver.findElement(By.xpath("//div/a[@id='a_search_ticket']"));
searchElement.click();

上一頁12下一頁
軟件測試工具 | 聯(lián)系我們 | 投訴建議 | 誠聘英才 | 申請使用列表 | 網(wǎng)站地圖
滬ICP備07036474 2003-2017 版權(quán)所有 上海澤眾軟件科技有限公司 Shanghai ZeZhong Software Co.,Ltd