mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[APM] Revert skip for flaky Tests (#160391)
## Summary Closes - https://github.com/elastic/kibana/issues/120056 - https://github.com/elastic/kibana/issues/122001 - https://github.com/elastic/kibana/issues/127431 - https://github.com/elastic/kibana/issues/127416 ## Flakiness Testing Changes in the PR were tested with the flaky test runner, running 50 times for all 5 configs for APM 1. 4 config (Trial, Basic, Cloud and Rules) present inside `apm_api_integration` folder and 2. 1 config present inside `functional/apps/apm` https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2499
This commit is contained in:
parent
036a736088
commit
384cf7864b
9 changed files with 18 additions and 25 deletions
|
@ -144,12 +144,10 @@ export class TimePickerPageObject extends FtrService {
|
|||
}
|
||||
this.log.debug(`Setting absolute range to ${fromTime} to ${toTime}`);
|
||||
await this.showStartEndTimes();
|
||||
let panel!: WebElementWrapper;
|
||||
|
||||
// set to time
|
||||
await this.retry.waitFor(`endDate is set to ${toTime}`, async () => {
|
||||
await this.testSubjects.click('superDatePickerendDatePopoverButton');
|
||||
panel = await this.getTimePickerPanel();
|
||||
await this.testSubjects.click('superDatePickerAbsoluteTab');
|
||||
await this.testSubjects.click('superDatePickerAbsoluteDateInput');
|
||||
await this.inputValue('superDatePickerAbsoluteDateInput', toTime);
|
||||
|
@ -164,8 +162,6 @@ export class TimePickerPageObject extends FtrService {
|
|||
// set from time
|
||||
await this.retry.waitFor(`startDate is set to ${fromTime}`, async () => {
|
||||
await this.testSubjects.click('superDatePickerstartDatePopoverButton');
|
||||
await this.waitPanelIsGone(panel);
|
||||
panel = await this.getTimePickerPanel();
|
||||
await this.testSubjects.click('superDatePickerAbsoluteTab');
|
||||
await this.testSubjects.click('superDatePickerAbsoluteDateInput');
|
||||
await this.inputValue('superDatePickerAbsoluteDateInput', fromTime);
|
||||
|
@ -196,7 +192,6 @@ export class TimePickerPageObject extends FtrService {
|
|||
await this.testSubjects.click('querySubmitButton');
|
||||
}
|
||||
|
||||
await this.waitPanelIsGone(panel);
|
||||
await this.header.awaitGlobalLoadingIndicatorHidden();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue