1.1.0-efba0c7e4b11d338272496fa15c55f8e31dfad74 • Published 3 years ago
playwright-xpath v1.1.0-efba0c7e4b11d338272496fa15c55f8e31dfad74
playwright-xpath
a playwright custom selector engine for xpath 3.1 using fontoxpath
installation
npm install playwright-xpathusage
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')]")
})()