mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-27 08:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			349 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			349 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Tests\Browser\Pages;
 | |
| 
 | |
| use Laravel\Dusk\Page;
 | |
| 
 | |
| abstract class BasePage extends Page
 | |
| {
 | |
|     /**
 | |
|      * @return array
 | |
|      */
 | |
|     public static function siteElements()
 | |
|     {
 | |
|         return [
 | |
|             '@@success' => '.alert.success[role="alert"]',
 | |
|             '@@error' => '.alert.error[role="alert"]',
 | |
|         ];
 | |
|     }
 | |
| }
 | 
