@checksum-ai/runtime 1.1.54-beta → 1.1.55-beta
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/checksumlib.js +5 -5
- package/cli.js +53 -53
- package/package.json +1 -1
- package/vtg-build/asset-manifest.json +3 -3
- package/vtg-build/index.html +1 -1
- package/vtg-build/static/js/main.3572aa2e.js +3 -0
- package/vtg-build/static/js/main.3572aa2e.js.LICENSE.txt +146 -0
- package/vtg-build/static/js/main.3572aa2e.js.map +1 -0
- package/vtg-build/static/js/main.c3d39af7.js +3 -0
- package/vtg-build/static/js/main.c3d39af7.js.LICENSE.txt +146 -0
- package/vtg-build/static/js/main.c3d39af7.js.map +1 -0
- package/vtg-build/static/js/main.e0ba182d.js +3 -0
- package/vtg-build/static/js/main.e0ba182d.js.LICENSE.txt +146 -0
- package/vtg-build/static/js/main.e0ba182d.js.map +1 -0
package/checksumlib.js
CHANGED
|
@@ -33282,11 +33282,11 @@
|
|
|
33282
33282
|
}, "getSelection");
|
|
33283
33283
|
let selection = getSelection();
|
|
33284
33284
|
if (name?.length && exact && !this.getLocatorBase(element).locator(selection.selector).elements.includes(element)) {
|
|
33285
|
-
props.find((p) => p[0] === "name")
|
|
33286
|
-
|
|
33287
|
-
false
|
|
33288
|
-
|
|
33289
|
-
|
|
33285
|
+
const nameProp = props.find((p) => p[0] === "name");
|
|
33286
|
+
if (nameProp) {
|
|
33287
|
+
nameProp[1] = escapeForAttributeSelector(name, false);
|
|
33288
|
+
selection = getSelection();
|
|
33289
|
+
}
|
|
33290
33290
|
}
|
|
33291
33291
|
return selection;
|
|
33292
33292
|
} catch (error) {
|