mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			477 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			477 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: MPL-2.0
 | |
|  */
 | |
| 
 | |
| import { clickable, isPresent } from 'ember-cli-page-object';
 | |
| 
 | |
| export default {
 | |
|   textareaIsPresent: isPresent('[data-test-textarea]'),
 | |
|   copyButtonIsPresent: isPresent('[data-test-copy-button]'),
 | |
|   downloadIconIsPresent: isPresent('[data-test-download-icon]'),
 | |
|   downloadButtonIsPresent: isPresent('[data-test-download-button]'),
 | |
|   toggleMasked: clickable('[data-test-button="toggle-masked"]'),
 | |
| };
 | 
