The following limitations apply:
During the transition phase, you need to select the new architecture explicitly on a per-script basis using the following designated new capabilities. These capabilities control the architecture used for both web and hybrid.
To use the new architecture on all your scripts, you can ask Perfecto Support to update your cloud configuration to use the new architecture by default. If the new architecture is the default, you can omit the new capabilities shown in red below.
capabilities.setCapability("useAppiumForWeb", true); capabilities.setCapability("browserName","Safari"); |
capabilities.setCapability("iOSResign", true); capabilities.setCapability("useAppiumForHybrid", true); |
Note: To allow hybrid testing on a cloud device, the app is resigned with a Perfecto development certificate. Apps using special entitlements that require the original author's certificate may not work as intended after the resigning process. |
When working with a Quantum project, add the following capabilities.
<parameter name="perfecto.capabilities.useAppiumForWeb" value="true" /> <parameter name="perfecto.capabilities.browserName" value="Safari" /> |
<parameter name="perfecto.capabilities.useAppiumForHybrid" value="true" /> <parameter name="perfecto.capabilities.iOSResign" value="true" /> |
Note: To allow hybrid testing on a cloud device, the app is resigned with a Perfecto development certificate. Apps using special entitlements that require the original author's certificate may not work as intended after the resigning process. |
Alternatively, use the following syntax.
<parameter name="perfecto.additional.capabilities" value="{'useAppiumForWeb':true, 'useAppiumForHybrid':true, 'iOSResign':true}" /> |
How you migrate existing Perfecto Hybrid app automation scripts to the new architecture depends on whether you work with single webview or multiple webview apps.
Note: Due to open tabs in Safari, the driver might identify several webview contexts. However, the implementation automatically uses the old webview names when looking for a single active webview, so the commands driver.context
("WEBVIEW")
and driver.context
("WEBVIEW_1")
both work as before. There is no need to search for the correct webview.
To migrate scripts for single webview apps:
Change the value of the automationName
capability from PerfectoMobile
to its default value, Appium
. Alternatively, because Appium
is the default value, you may remove this capability altogether.
Cancel the instrumentation (there is no need to instrument the tested app). Then fix object locators, if needed, because the tree seen by the script is slightly different.
Add the following capabilities with a value of true
(as described above):
useAppiumForHybrid
iOSResign
Working with multiple webview apps now requires the use of the Appium capability fullContextList
. Getting a list of all webviews using the
command returns a list similar to the following: getContextHandles(
)
["NATIVE_APP", "WEBVIEW_2", "WEBVIEW_3"]
where each webview is appended with a non-descriptive number and the order is not guaranteed to be the same with every test run. When setting the value of the desired capability fullContextList
to true
, the getContexts(
)
command returns the contexts as a JSON string. When parsed, each context is an object that includes:
The fullContextList
capability is only supported when testing on iOS devices using the new architecture.
To migrate scripts for multiple webview apps:
Add the fullContextList
capability to the driver and set it to true
.
Retrieve the contexts via the getContextHandles(
)
command (in Java, you can then cast each context to Map<
String,Object
>
).
Select the required context by URL or title key and execute a context switch, as shown in the following example:
Set<Map<String, Object>> contexts = driver().getContextHandles(); Optional<Map<String, Object>> webView; webView = contexts.stream().filter(c -> !c.get("id").equals("NATIVE_APP")) .filter(c -> c.get("title").equals(“EXPECTED_WEBVIEW_TITLE”)) .findFirst(); driver().context(webView.get().get("id").toString()); |