添加返回元素搜索方式类对象方法

This commit is contained in:
彭宇琦 2020-12-05 10:37:29 +08:00
parent bd6fea0f5e
commit fd9fd6c369
1 changed files with 8 additions and 3 deletions

View File

@ -41,8 +41,6 @@ public class Element {
this.abstractBy = abstractBy;
}
/**
* 用于返回当前存储的{@link WebElement}对象若该对象为空则抛出元素查找超时异常
* @return {@link WebElement}对象
@ -70,7 +68,6 @@ public class Element {
} catch (IndexOutOfBoundsException e) {
throw new NoSuchElementException("重新获取元素后不存在下标为“" + index + "”的元素,当前元素集合个数:" + abstractBy.elementList.size());
}
}
/**
@ -81,6 +78,14 @@ public class Element {
return elementData;
}
/**
* 返回当前元素的搜索方式类对象
* @return 元素的搜索方式类对象
*/
public AbstractBy getBy() {
return abstractBy;
}
/**
* 重新根据元素信息在页面查找元素
*/