You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The onboarding link used by the addApmData constant fails to preselect the "Application" option.
This issue arises from the URL being incorrectly formed, as it sends the parameter category with the value apm instead of application.
The purpose of this issue is to make two changes: use the right locator and change the category parameter to use application instead of apm.
Note
The locator is currently untyped, which means we could unintentionally use the wrong parameter. There's an open issue aimed at improving the locator: #189651.
Steps to reproduce:
Click "+ Add APM" button (shown in the screenshot)
The user is redirected to app/observabilityOnboarding/?category=apm
Observe that no option is preselected
Expected behavior:
The redirection should direct the user to app/observabilityOnboarding/?category=application so that the preselection works as intended.
Describe the bug:
The onboarding link used by the
addApmDataconstant fails to preselect the "Application" option.This issue arises from the URL being incorrectly formed, as it sends the parameter category with the value
apminstead ofapplication.The purpose of this issue is to make two changes: use the right locator and change the category parameter to use
applicationinstead ofapm.Note
The locator is currently untyped, which means we could unintentionally use the wrong parameter. There's an open issue aimed at improving the locator: #189651.
Steps to reproduce:
app/observabilityOnboarding/?category=apmExpected behavior:
The redirection should direct the user to
app/observabilityOnboarding/?category=applicationso that the preselection works as intended.