mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 07:04:17 +00:00 
			
		
		
		
	UiAutomatorWorkloads: Updated to use the new parameter passing functionality.
Each workload has be modfied to remove the old manual paremeter conversion and instead to retrieve the desired type from the parameter bundle directly.
This commit is contained in:
		| @@ -45,9 +45,8 @@ public class UiAutomation extends UxPerfUiAutomation implements ApplaunchInterfa | ||||
|     public void runUiAutomation() throws Exception { | ||||
|         parameters = getParams(); | ||||
|  | ||||
|         String filename = parameters.getString("filename").replace("0space0", " "); | ||||
|         String[] searchStrings = | ||||
|             parameters.getString("search_string_list").replace("0space0", " ").split("0newline0"); | ||||
|         String filename = parameters.getString("filename"); | ||||
|         String[] searchStrings = parameters.getStringArray("search_string_list"); | ||||
|  | ||||
|         setScreenOrientation(ScreenOrientation.NATURAL); | ||||
|         runApplicationInitialization(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user