mirror of
https://github.com/MontFerret/ferret.git
synced 2025-02-07 13:31:56 +02:00
14 lines
331 B
Plaintext
14 lines
331 B
Plaintext
LET doc = DOCUMENT("https://github.com/", true)
|
|
|
|
LET main = ELEMENT(doc, '.application-main')
|
|
LOG('innerText:start')
|
|
LET mainTxt = main.innerText
|
|
LOG('innerText:end')
|
|
|
|
NAVIGATE(doc, "https://github.com/features")
|
|
|
|
LET features = ELEMENT(doc, '.application-main')
|
|
LET featuresTxt = features.innerText
|
|
|
|
RETURN mainTxt == featuresTxt
|