mirror of
https://github.com/MontFerret/ferret.git
synced 2025-02-07 13:31:56 +02:00
* Added remote type reference resolver * Added support of XPath query selector * Added CDP e2e testss covering XPath integration * Added additional CDP e2e tests covering XPath integration * Added type check to QuerySelector casting function * Fixed XPath e2e tests * Fixed vuln issue * Added support of XPath selectors to http driver * Added e2e tests for XPAth
7 lines
152 B
Plaintext
7 lines
152 B
Plaintext
LET url = @lab.cdn.static + '/simple.html'
|
|
LET page = DOCUMENT(url)
|
|
|
|
LET actual = XPATH(page, "string(//meta/@charset)")
|
|
|
|
RETURN T::EQ(actual, "UTF-8")
|