mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Fixing `getRowIndicatorProvider should render log.level row indicators on Surrounding documents page` by waiting a bit longer for the table to be rendered.
This commit is contained in:
parent
40eb9b279f
commit
b7af143114
2 changed files with 3 additions and 3 deletions
|
@ -24,9 +24,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
const browser = getService('browser');
|
||||
const dataViews = getService('dataViews');
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/194043
|
||||
// Failing: See https://github.com/elastic/kibana/issues/194043
|
||||
describe.skip('extension getRowIndicatorProvider', () => {
|
||||
describe('extension getRowIndicatorProvider', () => {
|
||||
before(async () => {
|
||||
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
|
||||
});
|
||||
|
@ -130,6 +128,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
|
||||
await browser.refresh();
|
||||
await header.waitUntilLoadingHasFinished();
|
||||
await discover.waitUntilSearchingHasFinished();
|
||||
|
||||
anchorCell = await dataGrid.getCellElement(0, 0);
|
||||
anchorColorIndicator = await anchorCell.findByTestSubject(
|
||||
|
|
|
@ -120,6 +120,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
|
||||
await browser.refresh();
|
||||
await PageObjects.header.waitUntilLoadingHasFinished();
|
||||
await PageObjects.discover.waitUntilSearchingHasFinished();
|
||||
|
||||
anchorCell = await dataGrid.getCellElement(0, 0);
|
||||
anchorColorIndicator = await anchorCell.findByTestSubject(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue