8 lines
		
	
	
		
			237 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			237 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { test, expect } from '@playwright/test';
 | 
						|
 | 
						|
test('example test', async ({ page }) => {
 | 
						|
  await page.goto('http://localhost:8081/blog/02_compiler_parsing/index.html');
 | 
						|
  await expect(page).toHaveScreenshot({ fullPage: true });
 | 
						|
});
 | 
						|
 |