You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			10 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			10 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
| import { _electron, Page } from '@playwright/test';
 | |
| 
 | |
| export const cleanUp = async (window: Page) => {
 | |
|   await window.click('[data-testid=settings-section]');
 | |
|   await window.click('text=Clear All Data');
 | |
|   await window.click('text=Entire Account');
 | |
|   await window.click('text=I am sure');
 | |
|   await window.waitForTimeout(10000);
 | |
| };
 |