playwright-ui5 1.6.5 → 1.6.6
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/README.md +10 -0
- package/dist/browser/xpath.js +2328 -2196
- package/dist/node/main.d.ts +1 -1
- package/dist/node/main.d.ts.map +1 -1
- package/dist/node/main.js +8 -2
- package/dist/node/main.js.map +1 -1
- package/package.json +2 -2
- package/src/node/main.ts +9 -6
package/README.md
CHANGED
|
@@ -4,10 +4,20 @@ playwright [custom selector engines](https://playwright.dev/docs/extensibility#c
|
|
|
4
4
|
|
|
5
5
|
## installation
|
|
6
6
|
|
|
7
|
+
### if using playwright for nodejs
|
|
8
|
+
|
|
7
9
|
```bash
|
|
8
10
|
npm install playwright-ui5
|
|
9
11
|
```
|
|
10
12
|
|
|
13
|
+
### if using playwright for python
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
uv add playwright-ui5-select
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
see the [playwright-ui5-select](https://github.com/JamesYFC/playwright-ui5-select) repo for usage instructions
|
|
20
|
+
|
|
11
21
|
## usage
|
|
12
22
|
|
|
13
23
|
playwright-ui5 contains a selector engine for both css and xpath syntax. you can use whichever one you want, but the xpath one is more flexible since not all css selector syntax has been implemented yet.
|