Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@ export function TriggersActionsPageProvider({ getService }: FtrProviderContext)
await searchBox.clearValue();
await searchBox.type(searchText);
await searchBox.pressKeys(ENTER_KEY);
await find.byCssSelector(
'.euiBasicTable[data-test-subj="actionsTable"]:not(.euiBasicTable-loading)'
);
await retry.waitFor('connectors list filtered to the search text', async () => {
const rows = await this.getConnectorsList();
return rows.length > 0 && rows.every((row) => row.name.includes(searchText));
});
},
async searchAlerts(searchText: string) {
const searchBox = await testSubjects.find('ruleSearchField');
Expand Down
Loading