Install an application using a Perfecto command
Use the Perfecto proprietary command mobile:application:install
to install an application that was previously uploaded to the Perfecto repository.
To learn more about this command, including available parameters, see the Install application function
Copy
Install application
//declare the Map for script parameters
Map<String, Object> params = new HashMap<>();
params.put("file", "PRIVATE:applications/Errands.ipa");
params.put("instrument", "noinstrument");
driver.executeScript("mobile:application:install", params);
To learn more about this command, including available parameters, see Install application (FR).