1,select下拉框類型
使用工具可以看到html對應标簽為<select>這類标簽才是真正的下拉框類型就需要對應的方法,不能但看頁面上的效果,有的做成了效果但其實不是select類型即不能使用select相應方法
Select selectState = new Select(driver.findElement(By
.id("billing_state_id")));
selectState.selectByValue("12");
2,重新整理頁面
String script = "document.location.reload()";
((JavascriptExecutor) driver).executeScript(script);
3,截獲文本内容,多見于提示資訊顯示速即被hide效果
WebElement hiddenDiv = driver.findElement(By.id("notice"));
String script = "return document.getElementById('notice').innerHTML";
String currentText = (String) ((JavascriptExecutor) driver)
.executeScript(script, hiddenDiv);
log.info("the text is " + currentText);
4,在查找元素時遵循的原則是如果元素的id或者class唯一顯著那麼可以直接通路id或者class而不要執迷于css或者xpath這樣往往查找耗時而且容易找不到