mirror of
				https://github.com/MontFerret/ferret.git
				synced 2025-10-30 23:37:40 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			286 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			286 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
 | |
| 
 | |
| RETURN mainTxt != featuresTxt
 |