调整类结构,使By对象能返回ElementData类对象

This commit is contained in:
彭宇琦 2020-12-02 08:03:06 +08:00
parent 65b4411fa5
commit 75a7795fc8
1 changed files with 8 additions and 0 deletions

View File

@ -119,6 +119,14 @@ public abstract class AbstractBy {
}
}
/**
* 返回当前进行搜索的元素信息类{@link ElementData}对象
* @return 元素信息类对象
*/
public ElementData getElementData() {
return elementData;
}
/**
* 该方法用于将窗体切回顶层当本身是在最顶层时则该方法将使用无效
*/