Skip to content

Commit

Permalink
[Functional Tests] Adds a wait time between setting the index pattern…
Browse files Browse the repository at this point in the history
… and the time field on TSVB (#74736) (#74783)

* Adds a wait time between setting the index pattern and the time field on tsvb

* Char by char to set indexpattern to give more time to load the time field

* Add more time

* uncomment commented lines
  • Loading branch information
stratoula authored Aug 12, 2020
1 parent 5308ba1 commit cd67d6f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion test/functional/apps/visualize/_tsvb_chart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const inspector = getService('inspector');
const retry = getService('retry');
const security = getService('security');
const PageObjects = getPageObjects(['visualize', 'visualBuilder', 'timePicker', 'visChart']);
const PageObjects = getPageObjects([
'visualize',
'visualBuilder',
'timePicker',
'visChart',
'common',
]);

describe('visual builder', function describeIndexTests() {
this.tags('includeFirefox');
Expand Down Expand Up @@ -132,6 +138,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await retry.tryForTime(20000, async () => {
await PageObjects.timePicker.setAbsoluteRange(fromTime, toTime);
await PageObjects.visualBuilder.setIndexPatternValue('kibana_sample_data_flights');
await PageObjects.common.sleep(3000);
await PageObjects.visualBuilder.selectIndexPatternTimeField('timestamp');
});
const newValue = await PageObjects.visualBuilder.getMetricValue();
Expand Down
2 changes: 1 addition & 1 deletion test/functional/page_objects/visual_builder_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ export function VisualBuilderPageProvider({ getService, getPageObjects }: FtrPro
public async setIndexPatternValue(value: string) {
const el = await testSubjects.find('metricsIndexPatternInput');
await el.clearValue();
await el.type(value);
await el.type(value, { charByChar: true });
await PageObjects.header.waitUntilLoadingHasFinished();
}

Expand Down

0 comments on commit cd67d6f

Please sign in to comment.