mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
13 lines
320 B
Plaintext
13 lines
320 B
Plaintext
LET doc = DOCUMENT("https://github.com/", true)
|
|
LET main = ELEMENT(doc, '.application-main')
|
|
LET mainTxt = main.innerText
|
|
|
|
NAVIGATE(doc, "https://github.com/features")
|
|
|
|
LET features = ELEMENT(doc, '.application-main')
|
|
LET featuresTxt = features.innerText
|
|
|
|
LOG("featuresTxt:", featuresTxt)
|
|
|
|
RETURN mainTxt == featuresTxt
|