@dev-blinq/cucumber_client 1.0.1547-dev → 1.0.1548-dev
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.
|
@@ -144,7 +144,7 @@ class BVTRecorder {
|
|
|
144
144
|
getAction: (e) => {
|
|
145
145
|
this.eventUtils.consumeEvent(e);
|
|
146
146
|
},
|
|
147
|
-
getInterestedElement: () => {
|
|
147
|
+
getInterestedElement: () => {},
|
|
148
148
|
hoverOutlineStyle: "",
|
|
149
149
|
});
|
|
150
150
|
|
|
@@ -159,7 +159,7 @@ class BVTRecorder {
|
|
|
159
159
|
};
|
|
160
160
|
},
|
|
161
161
|
getAction: () => null,
|
|
162
|
-
getInterestedElement: () => {
|
|
162
|
+
getInterestedElement: () => {},
|
|
163
163
|
hoverOutlineStyle: "",
|
|
164
164
|
});
|
|
165
165
|
|
|
@@ -174,7 +174,7 @@ class BVTRecorder {
|
|
|
174
174
|
};
|
|
175
175
|
},
|
|
176
176
|
getAction: () => null,
|
|
177
|
-
getInterestedElement: () => {
|
|
177
|
+
getInterestedElement: () => {},
|
|
178
178
|
hoverOutlineStyle: "",
|
|
179
179
|
});
|
|
180
180
|
|
|
@@ -684,7 +684,7 @@ class BVTRecorder {
|
|
|
684
684
|
this.PW.roleUtils.getElementAccessibleName(el, true) ||
|
|
685
685
|
"";
|
|
686
686
|
const result = this.getElementProperties(el);
|
|
687
|
-
const elText = this.PW.selectorUtils.elementText(new Map(), el)
|
|
687
|
+
const elText = this.PW.selectorUtils.elementText(new Map(), el);
|
|
688
688
|
return {
|
|
689
689
|
role,
|
|
690
690
|
label,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { io } from "socket.io-client";
|
|
2
|
-
import { BVTRecorderInit } from "./bvt_init";
|
|
2
|
+
import { BVTRecorderInit } from "./bvt_init.js";
|
|
3
3
|
const requiredEnvVars = ["PROJECT_ID", "BLINQ_TOKEN", "SESSION_ID", "WORKER_WS_SERVER_URL"];
|
|
4
4
|
function validateEnvVariables() {
|
|
5
5
|
const missingVars = requiredEnvVars.filter((varName) => !process.env[varName]);
|