1.1.0-efba0c7e4b11d338272496fa15c55f8e31dfad74 • Published 3 years ago

playwright-xpath v1.1.0-efba0c7e4b11d338272496fa15c55f8e31dfad74

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

playwright-xpath

a playwright custom selector engine for xpath 3.1 using fontoxpath

installation

npm install playwright-xpath

usage

import { selectors } from 'playwright'
import xpath3 from 'playwright-xpath'

selectors.register('xpath3', xpath3)
;(async () => {
    await page.setContent('<button>Click me</button>')

    // (the starts-with function is only available in xpath 2 and above)
    await page.click("xpath3=//button[starts-with(., 'Click')]")
})()