Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 4e42155

Browse files
committed
连续操作添加描述接口
1 parent 2ba9f8d commit 4e42155

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

src/main/java/org/suren/autotest/web/framework/core/action/SequenceAble.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,9 @@ public interface SequenceAble
2525
* @return 当前序列操作的名称
2626
*/
2727
String getName();
28+
29+
/**
30+
* @return 描述信息
31+
*/
32+
String getDescription();
2833
}

src/main/java/org/suren/autotest/web/framework/selenium/action/SeleniumJqGridSequenceOperation.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,10 @@ public String getName()
113113
return "jqgrid";
114114
}
115115

116+
@Override
117+
public String getDescription()
118+
{
119+
return "基于jqgrid的连续操作";
120+
}
121+
116122
}

src/main/java/org/suren/autotest/web/framework/selenium/action/SeleniumZTreeSequenceOperation.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,10 @@ public String getName()
9090
return "ztree";
9191
}
9292

93+
@Override
94+
public String getDescription()
95+
{
96+
return "基于ztree实现的连续操作";
97+
}
98+
9399
}

0 commit comments

Comments
 (0)