All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.appium.java_client.HasAppStrings Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
package io.appium.java_client;


public interface HasAppStrings {
	
	/**
	* Get all defined Strings from an app for the default language
	*
	* @return a string of all the localized strings defined in the app
	*/
	public String getAppStrings();

	/**
	* Get all defined Strings from an app for the specified language
	*
	* @param language strings language code
	* @return a string of all the localized strings defined in the app
	*/
	public String getAppStrings(String language);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy