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.
		
		
		
		
		
			
		
			
	
	
		
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
| 
											6 years ago
										 | module.exports = { | ||
|  |   // generics
 | ||
|  |   objWithClassAndText: (obj, classname, text) => | ||
|  |     `//${obj}[contains(string(), "${text}")][contains(@class, "${classname}")]`, | ||
|  | 
 | ||
|  |   divRoleButtonWithText: text => | ||
|  |     `//div[contains(string(), "${text}")][contains(@role, "button")]`, | ||
|  |   divRoleButtonWithTextDisabled: text => | ||
|  |     `//div[contains(string(), "${text}")][contains(@role, "button")][contains(@class, "disabled")]`, | ||
|  |   divRoleButtonDangerWithText: text => | ||
|  |     `${module.exports.divRoleButtonWithText(text)}`, | ||
|  |   inputWithPlaceholder: placeholder => | ||
|  |     `//input[contains(@placeholder, "${placeholder}")]`, | ||
|  |   textAreaWithPlaceholder: placeholder => | ||
|  |     `//textarea[contains(@placeholder, "${placeholder}")]`, | ||
|  |   divWithClass: classname => `//div[contains(@class, "${classname}")]`, | ||
|  |   divWithClassAndText: (classname, text) => | ||
|  |     module.exports.objWithClassAndText('div', classname, text), | ||
|  |   spanWithClassAndText: (classname, text) => | ||
|  |     module.exports.objWithClassAndText('span', classname, text), | ||
|  |   toastWithText: text => | ||
|  |     module.exports.divWithClassAndText('session-toast-wrapper', text), | ||
|  | }; |