@grafana/plugin-e2e 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/e2e-selectors/resolver.test.js +0 -6
- package/dist/e2e-selectors/types.d.ts +0 -552
- package/dist/e2e-selectors/versioned/components.d.ts +49 -385
- package/dist/e2e-selectors/versioned/components.js +50 -387
- package/dist/e2e-selectors/versioned/pages.d.ts +57 -299
- package/dist/e2e-selectors/versioned/pages.js +60 -300
- package/package.json +2 -2
|
@@ -2,368 +2,128 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.versionedPages = void 0;
|
|
4
4
|
const constants_1 = require("./constants");
|
|
5
|
-
/**
|
|
6
|
-
* Selectors grouped/defined in Pages
|
|
7
|
-
*
|
|
8
|
-
* @alpha
|
|
9
|
-
*/
|
|
10
5
|
exports.versionedPages = {
|
|
11
|
-
Login: {
|
|
12
|
-
url: '/login',
|
|
13
|
-
username: 'Username input field',
|
|
14
|
-
password: 'Password input field',
|
|
15
|
-
submit: 'Login button',
|
|
16
|
-
skip: 'Skip change password button',
|
|
17
|
-
},
|
|
18
6
|
Home: {
|
|
19
|
-
url:
|
|
7
|
+
url: {
|
|
8
|
+
[constants_1.MIN_GRAFANA_VERSION]: '/',
|
|
9
|
+
},
|
|
20
10
|
},
|
|
21
11
|
DataSource: {
|
|
22
|
-
name: 'Data source settings page name input field',
|
|
23
|
-
delete: 'Data source settings page Delete button',
|
|
24
|
-
readOnly: 'Data source settings page read only message',
|
|
25
12
|
saveAndTest: {
|
|
26
13
|
'10.0.0': 'data-testid Data source settings page Save and Test button',
|
|
27
14
|
[constants_1.MIN_GRAFANA_VERSION]: 'Data source settings page Save and Test button',
|
|
28
15
|
},
|
|
29
|
-
alert: 'Data source settings page Alert',
|
|
30
|
-
},
|
|
31
|
-
DataSources: {
|
|
32
|
-
url: '/datasources',
|
|
33
|
-
dataSources: (dataSourceName) => `Data source list item ${dataSourceName}`,
|
|
34
16
|
},
|
|
35
17
|
EditDataSource: {
|
|
36
18
|
url: {
|
|
37
19
|
'10.2.0': (dataSourceUid) => `/connections/datasources/edit/${dataSourceUid}`,
|
|
38
20
|
[constants_1.MIN_GRAFANA_VERSION]: (dataSourceUid) => `/datasources/edit/${dataSourceUid}`,
|
|
39
21
|
},
|
|
40
|
-
settings: 'Datasource settings page basic settings',
|
|
41
22
|
},
|
|
42
|
-
|
|
23
|
+
AddDashboard: {
|
|
43
24
|
url: {
|
|
44
|
-
|
|
45
|
-
'10.1.0': '/connections/datasources/new',
|
|
25
|
+
[constants_1.MIN_GRAFANA_VERSION]: '/dashboard/new',
|
|
46
26
|
},
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
'
|
|
50
|
-
|
|
27
|
+
itemButton: {
|
|
28
|
+
//did not exist prior to 9.5.0
|
|
29
|
+
'9.5.0': (title) => `data-testid ${title}`,
|
|
30
|
+
},
|
|
31
|
+
addNewPanel: {
|
|
32
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Add new panel',
|
|
51
33
|
},
|
|
52
|
-
dataSourcePluginsV2: (pluginName) => `Add new data source ${pluginName}`,
|
|
53
|
-
},
|
|
54
|
-
ConfirmModal: {
|
|
55
|
-
delete: 'data-testid Confirm Modal Danger Button',
|
|
56
|
-
},
|
|
57
|
-
AddDashboard: {
|
|
58
|
-
url: '/dashboard/new',
|
|
59
|
-
itemButton: (title) => `data-testid ${title}`,
|
|
60
|
-
addNewPanel: 'Add new panel',
|
|
61
|
-
addNewRow: 'Add new row',
|
|
62
|
-
addNewPanelLibrary: 'Add new panel from panel library',
|
|
63
34
|
itemButtonAddViz: {
|
|
64
35
|
[constants_1.MIN_GRAFANA_VERSION]: 'Add new visualization menu item',
|
|
65
36
|
},
|
|
66
37
|
Settings: {
|
|
67
38
|
Annotations: {
|
|
68
39
|
List: {
|
|
69
|
-
url:
|
|
40
|
+
url: {
|
|
41
|
+
[constants_1.MIN_GRAFANA_VERSION]: '/dashboard/new?orgId=1&editview=annotations',
|
|
42
|
+
},
|
|
70
43
|
},
|
|
71
44
|
Edit: {
|
|
72
|
-
url:
|
|
45
|
+
url: {
|
|
46
|
+
[constants_1.MIN_GRAFANA_VERSION]: (annotationIndex) => `/dashboard/new?editview=annotations&editIndex=${annotationIndex}`,
|
|
47
|
+
},
|
|
73
48
|
},
|
|
74
49
|
},
|
|
75
50
|
Variables: {
|
|
76
51
|
List: {
|
|
77
|
-
url:
|
|
52
|
+
url: {
|
|
53
|
+
[constants_1.MIN_GRAFANA_VERSION]: '/dashboard/new?orgId=1&editview=templating',
|
|
54
|
+
},
|
|
78
55
|
},
|
|
79
56
|
Edit: {
|
|
80
|
-
url:
|
|
57
|
+
url: {
|
|
58
|
+
[constants_1.MIN_GRAFANA_VERSION]: (annotationIndex) => `/dashboard/new?orgId=1&editview=templating&editIndex=${annotationIndex}`,
|
|
59
|
+
},
|
|
81
60
|
},
|
|
82
61
|
},
|
|
83
62
|
},
|
|
84
63
|
},
|
|
85
64
|
Dashboard: {
|
|
86
|
-
url:
|
|
87
|
-
|
|
88
|
-
/**
|
|
89
|
-
* @deprecated use navV2 from Grafana 8.3 instead
|
|
90
|
-
*/
|
|
91
|
-
nav: 'Dashboard navigation',
|
|
92
|
-
navV2: 'data-testid Dashboard navigation',
|
|
93
|
-
publicDashboardTag: 'data-testid public dashboard tag',
|
|
94
|
-
},
|
|
95
|
-
SubMenu: {
|
|
96
|
-
submenu: 'Dashboard submenu',
|
|
97
|
-
submenuItem: 'data-testid template variable',
|
|
98
|
-
submenuItemLabels: (item) => `data-testid Dashboard template variables submenu Label ${item}`,
|
|
99
|
-
submenuItemValueDropDownValueLinkTexts: (item) => `data-testid Dashboard template variables Variable Value DropDown value link text ${item}`,
|
|
100
|
-
submenuItemValueDropDownDropDown: 'Variable options',
|
|
101
|
-
submenuItemValueDropDownOptionTexts: (item) => `data-testid Dashboard template variables Variable Value DropDown option text ${item}`,
|
|
102
|
-
Annotations: {
|
|
103
|
-
annotationsWrapper: 'data-testid annotation-wrapper',
|
|
104
|
-
annotationLabel: (label) => `data-testid Dashboard annotations submenu Label ${label}`,
|
|
105
|
-
annotationToggle: (label) => `data-testid Dashboard annotations submenu Toggle ${label}`,
|
|
106
|
-
},
|
|
65
|
+
url: {
|
|
66
|
+
[constants_1.MIN_GRAFANA_VERSION]: (uid) => `/d/${uid}`,
|
|
107
67
|
},
|
|
108
68
|
Settings: {
|
|
109
|
-
Actions: {
|
|
110
|
-
close: 'data-testid dashboard-settings-close',
|
|
111
|
-
},
|
|
112
|
-
General: {
|
|
113
|
-
deleteDashBoard: 'Dashboard settings page delete dashboard button',
|
|
114
|
-
sectionItems: (item) => `Dashboard settings section item ${item}`,
|
|
115
|
-
saveDashBoard: 'Dashboard settings aside actions Save button',
|
|
116
|
-
saveAsDashBoard: 'Dashboard settings aside actions Save As button',
|
|
117
|
-
/**
|
|
118
|
-
* @deprecated use components.TimeZonePicker.containerV2 from Grafana 8.3 instead
|
|
119
|
-
*/
|
|
120
|
-
timezone: 'Time zone picker select container',
|
|
121
|
-
title: 'Tab General',
|
|
122
|
-
},
|
|
123
69
|
Annotations: {
|
|
124
70
|
Edit: {
|
|
125
|
-
url:
|
|
71
|
+
url: {
|
|
72
|
+
[constants_1.MIN_GRAFANA_VERSION]: (dashboardUid, annotationIndex) => `/d/${dashboardUid}?editview=annotations&editIndex=${annotationIndex}`,
|
|
73
|
+
},
|
|
126
74
|
},
|
|
127
75
|
List: {
|
|
128
|
-
url:
|
|
76
|
+
url: {
|
|
77
|
+
[constants_1.MIN_GRAFANA_VERSION]: (dashboardUid) => `/d/${dashboardUid}?editview=annotations`,
|
|
78
|
+
},
|
|
129
79
|
addAnnotationCTA: 'Call to action button Add annotation query',
|
|
130
|
-
addAnnotationCTAV2:
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
},
|
|
135
|
-
NewAnnotation: {
|
|
136
|
-
panelFilterSelect: 'data-testid annotations-panel-filter',
|
|
137
|
-
showInLabel: 'show-in-label',
|
|
138
|
-
previewInDashboard: 'data-testid annotations-preview',
|
|
80
|
+
addAnnotationCTAV2: {
|
|
81
|
+
//did not exist prior to 8.3.0
|
|
82
|
+
'8.3.0': 'data-testid Call to action button Add annotation query',
|
|
83
|
+
},
|
|
139
84
|
},
|
|
140
85
|
},
|
|
141
86
|
Variables: {
|
|
142
87
|
List: {
|
|
143
|
-
url:
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
addVariableCTAV2:
|
|
88
|
+
url: {
|
|
89
|
+
[constants_1.MIN_GRAFANA_VERSION]: (dashboardUid) => `/d/${dashboardUid}?editview=templating`,
|
|
90
|
+
},
|
|
91
|
+
newButton: {
|
|
92
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Variable editor New variable button',
|
|
93
|
+
},
|
|
94
|
+
table: {
|
|
95
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Variable editor Table',
|
|
96
|
+
},
|
|
97
|
+
addVariableCTAV2: {
|
|
98
|
+
[constants_1.MIN_GRAFANA_VERSION]: (name) => `data-testid Call to action button ${name}`,
|
|
99
|
+
},
|
|
153
100
|
addVariableCTAV2Item: {
|
|
154
101
|
[constants_1.MIN_GRAFANA_VERSION]: 'Add variable',
|
|
155
102
|
},
|
|
156
103
|
},
|
|
157
104
|
Edit: {
|
|
158
105
|
url: {
|
|
159
|
-
[constants_1.MIN_GRAFANA_VERSION]: (dashboardUid, editIndex) =>
|
|
106
|
+
[constants_1.MIN_GRAFANA_VERSION]: (dashboardUid, editIndex) => `/d/${dashboardUid}?editview=templating&editIndex=${editIndex}`,
|
|
160
107
|
},
|
|
161
108
|
General: {
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
generalLabelInput: 'Variable editor Form Label field',
|
|
173
|
-
generalLabelInputV2: 'data-testid Variable editor Form Label field',
|
|
174
|
-
generalHideSelect: 'Variable editor Form Hide select',
|
|
175
|
-
generalHideSelectV2: 'data-testid Variable editor Form Hide select',
|
|
176
|
-
selectionOptionsMultiSwitch: 'Variable editor Form Multi switch',
|
|
177
|
-
selectionOptionsIncludeAllSwitch: 'Variable editor Form IncludeAll switch',
|
|
178
|
-
selectionOptionsCustomAllInput: 'Variable editor Form IncludeAll field',
|
|
179
|
-
selectionOptionsCustomAllInputV2: 'data-testid Variable editor Form IncludeAll field',
|
|
180
|
-
previewOfValuesOption: 'Variable editor Preview of Values option',
|
|
181
|
-
submitButton: 'Variable editor Submit button',
|
|
182
|
-
applyButton: 'data-testid Variable editor Apply button',
|
|
183
|
-
},
|
|
184
|
-
QueryVariable: {
|
|
185
|
-
queryOptionsRefreshSelect: 'Variable editor Form Query Refresh select',
|
|
186
|
-
queryOptionsRefreshSelectV2: 'data-testid Variable editor Form Query Refresh select',
|
|
187
|
-
queryOptionsRegExInput: 'Variable editor Form Query RegEx field',
|
|
188
|
-
queryOptionsRegExInputV2: 'data-testid Variable editor Form Query RegEx field',
|
|
189
|
-
queryOptionsSortSelect: 'Variable editor Form Query Sort select',
|
|
190
|
-
queryOptionsSortSelectV2: 'data-testid Variable editor Form Query Sort select',
|
|
191
|
-
queryOptionsQueryInput: 'Variable editor Form Default Variable Query Editor textarea',
|
|
192
|
-
valueGroupsTagsEnabledSwitch: 'Variable editor Form Query UseTags switch',
|
|
193
|
-
valueGroupsTagsTagsQueryInput: 'Variable editor Form Query TagsQuery field',
|
|
194
|
-
valueGroupsTagsTagsValuesQueryInput: 'Variable editor Form Query TagsValuesQuery field',
|
|
195
|
-
},
|
|
196
|
-
ConstantVariable: {
|
|
197
|
-
constantOptionsQueryInput: 'Variable editor Form Constant Query field',
|
|
198
|
-
constantOptionsQueryInputV2: 'data-testid Variable editor Form Constant Query field',
|
|
199
|
-
},
|
|
200
|
-
DatasourceVariable: {
|
|
201
|
-
datasourceSelect: 'data-testid datasource variable datasource type',
|
|
109
|
+
generalTypeSelectV2: {
|
|
110
|
+
'8.5.0': 'data-testid Variable editor Form Type select',
|
|
111
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Variable editor Form Type select',
|
|
112
|
+
},
|
|
113
|
+
previewOfValuesOption: {
|
|
114
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Variable editor Preview of Values option',
|
|
115
|
+
},
|
|
116
|
+
submitButton: {
|
|
117
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Variable editor Submit button',
|
|
118
|
+
},
|
|
202
119
|
},
|
|
203
|
-
TextBoxVariable: {
|
|
204
|
-
textBoxOptionsQueryInput: 'Variable editor Form TextBox Query field',
|
|
205
|
-
textBoxOptionsQueryInputV2: 'data-testid Variable editor Form TextBox Query field',
|
|
206
|
-
},
|
|
207
|
-
CustomVariable: {
|
|
208
|
-
customValueInput: 'data-testid custom-variable-input',
|
|
209
|
-
},
|
|
210
|
-
IntervalVariable: {
|
|
211
|
-
intervalsValueInput: 'data-testid interval variable intervals input',
|
|
212
|
-
},
|
|
213
|
-
},
|
|
214
|
-
},
|
|
215
|
-
},
|
|
216
|
-
Annotations: {
|
|
217
|
-
marker: 'data-testid annotation-marker',
|
|
218
|
-
},
|
|
219
|
-
Rows: {
|
|
220
|
-
Repeated: {
|
|
221
|
-
ConfigSection: {
|
|
222
|
-
warningMessage: 'data-testid Repeated rows warning message',
|
|
223
120
|
},
|
|
224
121
|
},
|
|
225
122
|
},
|
|
226
123
|
},
|
|
227
|
-
Dashboards: {
|
|
228
|
-
url: '/dashboards',
|
|
229
|
-
/**
|
|
230
|
-
* @deprecated use components.Search.dashboardItem from Grafana 8.3 instead
|
|
231
|
-
*/
|
|
232
|
-
dashboards: (title) => `Dashboard search item ${title}`,
|
|
233
|
-
},
|
|
234
|
-
SaveDashboardAsModal: {
|
|
235
|
-
newName: 'Save dashboard title field',
|
|
236
|
-
save: 'Save dashboard button',
|
|
237
|
-
},
|
|
238
|
-
SaveDashboardModal: {
|
|
239
|
-
save: 'Dashboard settings Save Dashboard Modal Save button',
|
|
240
|
-
saveVariables: 'Dashboard settings Save Dashboard Modal Save variables checkbox',
|
|
241
|
-
saveTimerange: 'Dashboard settings Save Dashboard Modal Save timerange checkbox',
|
|
242
|
-
},
|
|
243
|
-
SharePanelModal: {
|
|
244
|
-
linkToRenderedImage: 'Link to rendered image',
|
|
245
|
-
},
|
|
246
|
-
ShareDashboardModal: {
|
|
247
|
-
shareButton: 'Share dashboard',
|
|
248
|
-
PublicDashboard: {
|
|
249
|
-
Tab: 'Tab Public dashboard',
|
|
250
|
-
WillBePublicCheckbox: 'data-testid public dashboard will be public checkbox',
|
|
251
|
-
LimitedDSCheckbox: 'data-testid public dashboard limited datasources checkbox',
|
|
252
|
-
CostIncreaseCheckbox: 'data-testid public dashboard cost may increase checkbox',
|
|
253
|
-
PauseSwitch: 'data-testid public dashboard pause switch',
|
|
254
|
-
EnableAnnotationsSwitch: 'data-testid public dashboard on off switch for annotations',
|
|
255
|
-
CreateButton: 'data-testid public dashboard create button',
|
|
256
|
-
DeleteButton: 'data-testid public dashboard delete button',
|
|
257
|
-
CopyUrlInput: 'data-testid public dashboard copy url input',
|
|
258
|
-
CopyUrlButton: 'data-testid public dashboard copy url button',
|
|
259
|
-
SettingsDropdown: 'data-testid public dashboard settings dropdown',
|
|
260
|
-
TemplateVariablesWarningAlert: 'data-testid public dashboard disabled template variables alert',
|
|
261
|
-
UnsupportedDataSourcesWarningAlert: 'data-testid public dashboard unsupported data sources alert',
|
|
262
|
-
NoUpsertPermissionsWarningAlert: 'data-testid public dashboard no upsert permissions alert',
|
|
263
|
-
EnableTimeRangeSwitch: 'data-testid public dashboard on off switch for time range',
|
|
264
|
-
EmailSharingConfiguration: {
|
|
265
|
-
Container: 'data-testid email sharing config container',
|
|
266
|
-
ShareType: 'data-testid public dashboard share type',
|
|
267
|
-
EmailSharingInput: 'data-testid public dashboard email sharing input',
|
|
268
|
-
EmailSharingInviteButton: 'data-testid public dashboard email sharing invite button',
|
|
269
|
-
EmailSharingList: 'data-testid public dashboard email sharing list',
|
|
270
|
-
DeleteEmail: 'data-testid public dashboard delete email button',
|
|
271
|
-
ReshareLink: 'data-testid public dashboard reshare link button',
|
|
272
|
-
},
|
|
273
|
-
},
|
|
274
|
-
},
|
|
275
|
-
PublicDashboard: {
|
|
276
|
-
page: 'public-dashboard-page',
|
|
277
|
-
NotAvailable: {
|
|
278
|
-
container: 'public-dashboard-not-available',
|
|
279
|
-
title: 'public-dashboard-title',
|
|
280
|
-
pausedDescription: 'public-dashboard-paused-description',
|
|
281
|
-
},
|
|
282
|
-
},
|
|
283
|
-
RequestViewAccess: {
|
|
284
|
-
form: 'request-view-access-form',
|
|
285
|
-
recipientInput: 'request-view-access-recipient-input',
|
|
286
|
-
submitButton: 'request-view-access-submit-button',
|
|
287
|
-
},
|
|
288
124
|
Explore: {
|
|
289
|
-
url:
|
|
290
|
-
|
|
291
|
-
container: 'data-testid Explore',
|
|
292
|
-
graph: 'Explore Graph',
|
|
293
|
-
table: 'Explore Table',
|
|
294
|
-
scrollView: 'data-testid explorer scroll view',
|
|
295
|
-
},
|
|
296
|
-
},
|
|
297
|
-
SoloPanel: {
|
|
298
|
-
url: (page) => `/d-solo/${page}`,
|
|
299
|
-
},
|
|
300
|
-
PluginsList: {
|
|
301
|
-
page: 'Plugins list page',
|
|
302
|
-
list: 'Plugins list',
|
|
303
|
-
listItem: 'Plugins list item',
|
|
304
|
-
signatureErrorNotice: 'Unsigned plugins notice',
|
|
305
|
-
},
|
|
306
|
-
PluginPage: {
|
|
307
|
-
page: 'Plugin page',
|
|
308
|
-
signatureInfo: 'Plugin signature info',
|
|
309
|
-
disabledInfo: 'Plugin disabled info',
|
|
310
|
-
},
|
|
311
|
-
PlaylistForm: {
|
|
312
|
-
name: 'Playlist name',
|
|
313
|
-
interval: 'Playlist interval',
|
|
314
|
-
itemDelete: 'data-testid playlist-form-delete-item',
|
|
315
|
-
},
|
|
316
|
-
BrowseDashboards: {
|
|
317
|
-
table: {
|
|
318
|
-
body: 'data-testid browse-dashboards-table',
|
|
319
|
-
row: (uid) => `data-testid ${uid} row`,
|
|
320
|
-
checkbox: (uid) => `data-testid ${uid} checkbox`,
|
|
321
|
-
},
|
|
322
|
-
},
|
|
323
|
-
Search: {
|
|
324
|
-
url: '/?search=openn',
|
|
325
|
-
FolderView: {
|
|
326
|
-
url: '/?search=open&layout=folders',
|
|
327
|
-
},
|
|
328
|
-
},
|
|
329
|
-
PublicDashboards: {
|
|
330
|
-
ListItem: {
|
|
331
|
-
linkButton: 'public-dashboard-link-button',
|
|
332
|
-
configButton: 'public-dashboard-configuration-button',
|
|
333
|
-
trashcanButton: 'public-dashboard-remove-button',
|
|
334
|
-
pauseSwitch: 'data-testid public dashboard pause switch',
|
|
335
|
-
},
|
|
336
|
-
},
|
|
337
|
-
UserListPage: {
|
|
338
|
-
tabs: {
|
|
339
|
-
allUsers: 'data-testid all-users-tab',
|
|
340
|
-
orgUsers: 'data-testid org-users-tab',
|
|
341
|
-
publicDashboardsUsers: 'data-testid public-dashboards-users-tab',
|
|
342
|
-
users: 'data-testid users-tab',
|
|
343
|
-
},
|
|
344
|
-
org: {
|
|
345
|
-
url: '/org/users',
|
|
346
|
-
},
|
|
347
|
-
admin: {
|
|
348
|
-
url: '/admin/users',
|
|
349
|
-
},
|
|
350
|
-
publicDashboards: {
|
|
351
|
-
container: 'data-testid public-dashboards-users-list',
|
|
352
|
-
},
|
|
353
|
-
UserListAdminPage: {
|
|
354
|
-
container: 'data-testid user-list-admin-page',
|
|
355
|
-
},
|
|
356
|
-
UsersListPage: {
|
|
357
|
-
container: 'data-testid users-list-page',
|
|
358
|
-
},
|
|
359
|
-
UsersListPublicDashboardsPage: {
|
|
360
|
-
container: 'data-testid users-list-public-dashboards-page',
|
|
361
|
-
DashboardsListModal: {
|
|
362
|
-
listItem: (uid) => `data-testid dashboards-list-item-${uid}`,
|
|
363
|
-
},
|
|
125
|
+
url: {
|
|
126
|
+
[constants_1.MIN_GRAFANA_VERSION]: '/explore',
|
|
364
127
|
},
|
|
365
128
|
},
|
|
366
|
-
ProfilePage: {
|
|
367
|
-
url: '/profile',
|
|
368
|
-
},
|
|
369
129
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-e2e",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"semver": "^7.5.4",
|
|
45
45
|
"uuid": "^9.0.1"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "e5eec7a28018662bec5b65e0980c3ff1fe2a358d"
|
|
48
48
|
}
|