mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[TSVB] Wait before setting another terms field (#143373)
This commit is contained in:
parent
42344172e3
commit
963ec08042
1 changed files with 3 additions and 1 deletions
|
@ -11,11 +11,12 @@ import expect from '@kbn/expect';
|
|||
import { FtrProviderContext } from '../../../ftr_provider_context';
|
||||
|
||||
export default function ({ getPageObjects, getService }: FtrProviderContext) {
|
||||
const { visualize, visualBuilder, timeToVisualize, dashboard, common } = getPageObjects([
|
||||
const { visualize, visualBuilder, timeToVisualize, dashboard, header, common } = getPageObjects([
|
||||
'visualBuilder',
|
||||
'visualize',
|
||||
'timeToVisualize',
|
||||
'dashboard',
|
||||
'header',
|
||||
'common',
|
||||
]);
|
||||
const security = getService('security');
|
||||
|
@ -221,6 +222,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
|
|||
it('should create a filter for series with multiple split by terms fields one of which has formatting', async () => {
|
||||
const expectedFilterPills = ['0, win 7'];
|
||||
await visualBuilder.setMetricsGroupByTerms('bytes');
|
||||
await header.waitUntilLoadingHasFinished();
|
||||
await visualBuilder.setAnotherGroupByTermsField('machine.os.raw');
|
||||
await visualBuilder.clickSeriesOption();
|
||||
await visualBuilder.setChartType('Bar');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue