如何使用Java验证Selenium WebDriver是否单击了Button

时间:2014-03-13 12:49:02

标签: java selenium-webdriver

我想验证是否使用Selenium WebDriver使用Java单击某个按钮。我该如何验证?

2 个答案:

答案 0 :(得分:1)

public static boolean isClickable(WebElement webe){
try
{ 
WebDriverWait wait = new WebDriverWait(yourWebDriver, 5);
wait.until(ExpectedConditions.elementToBeClickable(webe));
   return true;
 }
catch (Exception e)
{
return false;
 }

boolean bst = className.isClickable("your element");

答案 1 :(得分:0)

了解单击按钮的唯一方法是。实际验证单击按钮时获得的响应。你为什么要知道它是否被点击..你想验证响应..只要你能找到那个元素,那么你可以点击它..如果你找不到或点击它,那么会发生异常..单击后...验证响应。