@grafana/plugin-e2e 3.0.0-canary.2093.17585761099.0 → 3.0.0-canary.2093.17793331000.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.
@@ -47,7 +47,10 @@ class Panel extends GrafanaPage.GrafanaPage {
47
47
  */
48
48
  get data() {
49
49
  const panel = this.locator;
50
- return panel.locator('[role="cell"]');
50
+ if (semver__namespace.lt(this.ctx.grafanaVersion, "12.2.0")) {
51
+ return panel.locator('[role="cell"]');
52
+ }
53
+ return panel.locator('[role="gridcell"]');
51
54
  }
52
55
  /**
53
56
  * Click on a menu item in the panel menu.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/plugin-e2e",
3
- "version": "3.0.0-canary.2093.17585761099.0",
3
+ "version": "3.0.0-canary.2093.17793331000.0",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [
@@ -39,7 +39,7 @@
39
39
  "devDependencies": {
40
40
  "@playwright/test": "^1.55.0",
41
41
  "@types/uuid": "^10.0.0",
42
- "dotenv": "^17.2.1"
42
+ "dotenv": "^17.2.2"
43
43
  },
44
44
  "dependencies": {
45
45
  "@grafana/e2e-selectors": "^12.2.0-255920",
@@ -47,5 +47,5 @@
47
47
  "uuid": "^11.0.2",
48
48
  "yaml": "^2.3.4"
49
49
  },
50
- "gitHead": "3a0bf884d1e2ac11bc9504010b67a6389d8007af"
50
+ "gitHead": "c167bcbe72d25e7442d3e1bb72df9788b309e650"
51
51
  }