验证是否显示所有元素的可能方法有哪些

时间:2017-11-29 10:35:12

标签: geb

当我将鼠标悬停在按钮上时,会显示许多选项。现在我想验证是否一次显示所有选项。

static content = {
    timeRangeContainer { $("div.filter-list")[0] }
    timeRangeFilterOptions { timeRangeContainer.find ("div.filter-drop li")}
}

def hovermouse(){
       interact{
             moveToElement(timeRangeFilterButton)
}

def optionDisplayed(){
     timeRangeFilterOptions[0].isDisplayed()
}

}

在上面的示例中,我只能检查一个元素是否显示,但我想检查所有选项是否显示在单行代码中,如(timeRangeFilterOptions.isDisplayed())。有可能吗?

1 个答案:

答案 0 :(得分:0)

一种方法是:

sh "ssh -o StrictHostKeyChecking=no user@product.company.com 'echo $HOME'"