Can not Install the WebDriverAgent

Hi @tranhuya68,

Those versions seem to be compatible. Based on your error log, you got 2 errors:

  1. Provisioning profile “xxx_uat_development” has app ID “com.xxxxx.xxxx-uat”, which does not match the bundle ID “com.facebook.WebDriverAgentRunner.xctrunner”

You’re trying to build WebDriverAgentRunner, which has the bundle ID:
com.facebook.WebDriverAgentRunner.xctrunner. But your provisioning profile is tied to a different app: com.xxxxx.xxxx-uat

  1. doesn't match the entitlements file’s value for the application-identifier entitlement

This means the provisioning profile and entitlements aren’t aligned.

The workaround I suggest is to create a Proper Provisioning Profile for WebDriverAgent. Read more here:

and similar discussion:

Hope this can help