Skip to content

Commit

Permalink
LTS2025: ftest search feature
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshkumar1019 committed Nov 7, 2024
1 parent b68d313 commit 069c36e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
env:
RUN_ALL: false
BAIL: 0
run: mvn -ntp install -Pftest -DskipInstall -X
run: mvn -ntp install -Pftest -DskipInstall

- name: Archive cucumber reports
if: ${{ always() }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,12 +200,12 @@ Then('I edit the results columns to show {string}', async function(heading) {

Then(/^I save my search as "(.+)"$/, async function(searchName) {
const saveAsButton = await this.ui.searchResults.saveSearchAsButton;
await saveAsButton.waitForVisible({ timeout: 5000 });
await saveAsButton.waitForVisible();
await saveAsButton.click();
await this.ui.searchResults.enterInput(searchName);
const confirmSaveButton = await this.ui.searchResults.confirmSaveSearchButton;
await confirmSaveButton.waitForEnabled({ timeout: 5000 });
await confirmSaveButton.waitForClickable({ timeout: 5000 });
await confirmSaveButton.waitForEnabled();
await confirmSaveButton.waitForClickable();
await confirmSaveButton.click();
});

Expand Down

0 comments on commit 069c36e

Please sign in to comment.