mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-05 15:16:07 +02:00
* Fixed attr retrieval using XPATH in CDP * Updated single node value in CDP * Added e2e test * Fixed attr retrieval with XPATH for HTTP driver * Update Makefile * Update attr.fql
7 lines
139 B
Plaintext
7 lines
139 B
Plaintext
LET url = @static + '/simple.html'
|
|
LET page = DOCUMENT(url)
|
|
|
|
LET actual = XPATH(page, "//meta/@charset")
|
|
|
|
RETURN EXPECT(["UTF-8"], actual)
|