selenium2怎么判断元素不存在

1.当元素不存在的话,通常会抛出NoSuchElementException 导致测试失败,但有时候,我们需要去确保页面元素不存在,才是我们正确的验收条件下面的方法可以用来判定页面元素是否存在

Python版本

def isPresent(self):
  try: 
        driver.find_element_by_xpath(Xpath)
  except NoSuchElementException, e: 
        return False
  return True

Java版本

public boolean doesWebElementExist(WebDriver driver, By selector)
{ 

        try 
        { 
               driver.findElement(selector); 
               return true; 
        } 
        catch (NoSuchElementException e) 
        { 
                return false; 
        } 
}


使用片段

WebDriver driver = new InternetExplorerDriver();  
By locator = By.id("id");  
doesWebElementExist(driver,locator); 

2.类似于seleniumRC中的isTextPresent 方法
用xpath匹配所有元素(//*[contains(.,'keyword')]),判断是否存在包含期望关键字的元素。 使用时可以根据需要调整参数和返回值。

public boolean isContentAppeared(WebDriver driver,String content) {  
    boolean status = false;  
    try {  
        driver.findElement(By.xpath("//*[contains(.,'" + content + "')]"));  
        System.out.println(content + " is appeard!");  
        status = true;  
    } catch (NoSuchElementException e) {  
        status = false;  
        System.out.println("'" + content + "' doesn't exist!"));  
    }  
    return status;  
}  

PS: Selenium1提供的isElementPresent方法也可解决此问题。 selenium.isElementPresent(By.Xpath("//div[@id='kw']"))

转载于:https://my.oschina.net/cym92/blog/725588

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值