mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Functional Tests] Increase the timeout on getting the legend value on timeseries (#73279)
This commit is contained in:
parent
330c966f4f
commit
0dbfde4f4d
1 changed files with 3 additions and 3 deletions
|
@ -315,9 +315,9 @@ export function VisualBuilderPageProvider({ getService, getPageObjects }: FtrPro
|
|||
|
||||
public async getRhythmChartLegendValue(nth = 0) {
|
||||
await PageObjects.visChart.waitForVisualizationRenderingStabilized();
|
||||
const metricValue = (await find.allByCssSelector(`.echLegendItem .echLegendItem__extra`))[
|
||||
nth
|
||||
];
|
||||
const metricValue = (
|
||||
await find.allByCssSelector(`.echLegendItem .echLegendItem__extra`, 20000)
|
||||
)[nth];
|
||||
await metricValue.moveMouseTo();
|
||||
return await metricValue.getVisibleText();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue