mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Failing test: Chrome UI Functional Tests.test/functional/apps/visualize/_tsvb_time_series·ts - visualize app visualize ciGroup11 visual builder Time Series basics Clicking on the chart should create a filter for series with multiple split by terms fields one of which has formatting (#129840)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
f32faab84d
commit
1c72b56acb
1 changed files with 9 additions and 7 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 } = getPageObjects([
|
||||
const { visualize, visualBuilder, timeToVisualize, dashboard, common } = getPageObjects([
|
||||
'visualBuilder',
|
||||
'visualize',
|
||||
'timeToVisualize',
|
||||
'dashboard',
|
||||
'common',
|
||||
]);
|
||||
const security = getService('security');
|
||||
const testSubjects = getService('testSubjects');
|
||||
|
@ -186,14 +187,15 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
|
|||
|
||||
await dashboard.waitForRenderComplete();
|
||||
const el = await elasticChart.getCanvas();
|
||||
// click on specific coordinates
|
||||
await browser
|
||||
.getActions()
|
||||
.move({ x: 105, y: 115, origin: el._webElement })
|
||||
.click()
|
||||
.perform();
|
||||
|
||||
await retry.try(async () => {
|
||||
// click on specific coordinates
|
||||
await browser
|
||||
.getActions()
|
||||
.move({ x: 105, y: 115, origin: el._webElement })
|
||||
.click()
|
||||
.perform();
|
||||
await common.sleep(2000);
|
||||
await testSubjects.click('applyFiltersPopoverButton');
|
||||
await testSubjects.missingOrFail('applyFiltersPopoverButton');
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue