We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcdd2bb commit 1fc7f16Copy full SHA for 1fc7f16
1 file changed
x-pack/test/functional_with_es_ssl/page_objects/alert_details.ts
@@ -107,7 +107,8 @@ export function AlertDetailsPageProvider({ getService }: FtrProviderContext) {
107
return (await viewInAppButton.getAttribute('disabled')) !== 'disabled';
108
},
109
async clickViewInAppEnabled() {
110
- return await testSubjects.click(`alertDetails-viewInApp`);
+ const viewInAppButton = await testSubjects.find(`alertDetails-viewInApp`);
111
+ return viewInAppButton.click();
112
113
async getNoOpAppTitle() {
114
return await testSubjects.getVisibleText('noop-title');
0 commit comments