1.1.0-7a833f565a93416ce0b21bc10d6220468586d5c4 • Published 3 years ago
playwright-xpath v1.1.0-7a833f565a93416ce0b21bc10d6220468586d5c4
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')]")
})()