webdriver selenium xpath

  • xpath 语法
  1. / 表示从根节点开始查找
  2. //表示全文查找
  3. 不填表示从当前节点查找
  4. @表示attribute, By.xpath("//iframe[@class='g-editor-iframe']"
 ref. xpath  http://www.w3schools.com/xpath/

  • 获取iframe中的内容
      
            Selenium2在使用get()方法打开一个网页的时候,是不会继续加载里面的iframe中的内容的(这一点与Selenium有所区别)。那么,我们就需要人为的要求Selenium2对iframe中的内容进行加载。
driver.switchTo().frame(driver.findElement(By.xpath("//iframe[@class='g-editor-iframe']")));  ?

    用getWindowHandle()方法可以快速的进行切换回主页:

    String strMainHandler = driver.getWindowHandle();
    driver.switchTo().window(strMainHandler);

  •  代码driver.findElement(By.className("lQ txt-flag0"))会报错,因为calssname包含了空格或者.,webdriver会认为尝试复合的classname查询,所以应该使用xpath或者cssselector。
    driver.findElement(By.cssSelector("li[class='lQ txt-flag0']"));
    driver.findElement(By.xpath("//li[@class=''lQ txt-flag0']"));

  • Explicit and Implicit Waits
Explicit wait: 显示等待,等待的条件满足或者等待超时
Implicit wait: 隐式等待,设定一次在整个webdriver instant的生命周期内有效,所以操作会等待直到超时,不用显示调用

如果指定的元素//a[@title='xxx草稿箱']找不到,那么将在此等待15s
 WebElement myDynamicElement = (new WebDriverWait(driver, 15))
        .until(new ExpectedCondition<WebElement>(){
       @Override
       public WebElement apply(WebDriver d) {
       return d.findElement(By.xpath("//a[@title='xxx草稿箱']"));
       }});

如果指定的元素//a[@title='xxx草稿箱']找不到,也会等待5s
driver.manage().timeouts().implicitlyWait(5,TimeUnit.SECONDS);
WebElement draftBox = driver.findElement(By.xpath("//a[@title='xxx草稿箱']"));

ref.  http://seleniumhq.org/docs/04_webdriver_advanced.html

  • Webdriver
ref. http://my.oschina.net/willSoft/blog/28119

你可能感兴趣的:(iframe,String,Class,selenium)