@one2x/playwright-core 1.57.0-alpha.13 → 1.57.0-alpha.15
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/lib/client/elementHandle.js +3 -0
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/protocol/validator.js +4 -0
- package/lib/server/dispatchers/elementHandlerDispatcher.js +4 -0
- package/lib/server/dom.js +37 -0
- package/lib/utils/isomorphic/protocolMetainfo.js +1 -0
- package/lib/vite/traceViewer/assets/{codeMirrorModule-BWq0ju5A.js → codeMirrorModule-B6l3VxXj.js} +1 -1
- package/lib/vite/traceViewer/assets/{defaultSettingsView-CqDo_vCh.js → defaultSettingsView-B9fHfbV9.js} +4 -4
- package/lib/vite/traceViewer/{index.S-Wh-dN7.js → index.D2hjs3D7.js} +1 -1
- package/lib/vite/traceViewer/index.html +2 -2
- package/lib/vite/traceViewer/{uiMode.DDjhxSGz.js → uiMode.BESi128t.js} +1 -1
- package/lib/vite/traceViewer/uiMode.html +2 -2
- package/package.json +1 -1
- package/types/types.d.ts +8 -0
|
@@ -56,6 +56,9 @@ class ElementHandle extends import_jsHandle.JSHandle {
|
|
|
56
56
|
const value = (await this._elementChannel.getAttribute({ name })).value;
|
|
57
57
|
return value === void 0 ? null : value;
|
|
58
58
|
}
|
|
59
|
+
async getPathWithRefs() {
|
|
60
|
+
return (await this._elementChannel.getPathWithRefs()).path;
|
|
61
|
+
}
|
|
59
62
|
async inputValue() {
|
|
60
63
|
return (await this._elementChannel.inputValue()).value;
|
|
61
64
|
}
|