[Functional Tests] Increase the timeout when locating the tableview] (#73243)

This commit is contained in:
Stratoula Kalafateli 2020-07-28 11:15:58 +03:00 committed by GitHub
parent abfda1f792
commit 5ea28702f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -408,7 +408,7 @@ export function VisualBuilderPageProvider({ getService, getPageObjects }: FtrPro
* @memberof VisualBuilderPage
*/
public async getViewTable(): Promise<string> {
const tableView = await testSubjects.find('tableView');
const tableView = await testSubjects.find('tableView', 20000);
return await tableView.getVisibleText();
}