We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ImportsPage
1 parent 1871c86 commit a0a1adeCopy full SHA for a0a1ade
src/org/labkey/test/components/ui/pipeline/ImportsPage.java
@@ -61,6 +61,12 @@ public QueryGrid getImportsGrid()
61
return grid;
62
}
63
64
+ public ImportsPage clickCancel()
65
+ {
66
+ elementCache().cancelButton.click();
67
+ return new ImportsPage(this);
68
+ }
69
+
70
@Override
71
protected ElementCache elementCache()
72
{
@@ -83,6 +89,8 @@ final WebElement pageHeader()
83
89
.findWhenNeeded(this);
84
90
85
91
92
+ final WebElement cancelButton = Locator.button("Cancel").findWhenNeeded(this);
93
86
94
final QueryGrid pipelineJobsGrid()
87
95
88
96
return new QueryGrid.QueryGridFinder(getDriver()).find(this);
0 commit comments