web-dev-qa-db-ja.com

Xcodeビルドコマンドまたはアプリケーションを使用してビルドするとテストが失敗する

使ってます :

Xcode 10.1
Os Version : 12.1
iPhone 6

ビルドのセットアップに必要なすべての手順とすべてを実行しましたが、xcodeビルドを使用してプロジェクトをビルドしようとするとエラーが発生します。

それは署名の問題であるか、いくつかの構成が欠落しているという2つのことの間で混乱しています。 webdriverエージェントxproj。

Xcodeビルドコマンドの実際のエラー

Testing failed:
WebDriverAgentRunner-Runner.app encountered an error (Failed to install or launch the test runner. (Underlying error: Unable to launch com.Apple.test.WebDriverAgentRunner-Runner. (Underlying error: The operation couldn’t be completed. (DTXMessage error 1.))))

Appiumでの実際のエラー

Error: Unable to launch WebDriverAgent because of xcodebuild failure: “xcodebuild failed with code 65”. Make sure you follow the tutorial at https://github.com/appium/appium-xcuitest-driver/blob/master/docs/real-device-config.md. Try to remove the WebDriverAgentRunner application from the device if it is installed and reboot the device.

それが役立つ場合、いくつかの他のログ:

2018-11-19 11:02:17.350 xcodebuild[2413:325556] Error Domain=com.Apple.platform.iphoneos Code=-12 “Unable to launch com.Apple.test.WebDriverAgentRunner-Runner” UserInfo={NSLocalizedDescription=Unable to launch com.Apple.test.WebDriverAgentRunner-Runner, NSUnderlyingError=0x7f8ec758be20 {Error Domain=DTXMessage Code=1 “(null)” UserInfo={DTXExceptionKey=The operation couldn’t be completed. Unable to launch com.Apple.test.WebDriverAgentRunner-Runner because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user. : Failed to launch process with bundle identifier ‘com.Apple.test.WebDriverAgentRunner-Runner’}}}
2018-11-19 11:02:17.350 xcodebuild[2413:325556] Error Domain=IDETestOperationsObserverErrorDomain Code=4 “Failed to install or launch the test runner” UserInfo={NSLocalizedRecoverySuggestion=If you believe this error represents a bug, please attach the result bundle at /Users/asianweb/Library/Developer/Xcode/DerivedData/WebDriverAgent-dikkwtrisltbeobjmfvpthwwekvs/Logs/Test/Test-WebDriverAgentRunner-2018.11.19_11-02-01-+0530.xcresult, NSLocalizedDescription=Failed to install or launch the test runner, NSUnderlyingError=0x7f8ec7ac6c70 {Error Domain=com.Apple.platform.iphoneos Code=-12 “Unable to launch com.Apple.test.WebDriverAgentRunner-Runner” UserInfo={NSLocalizedDescription=Unable to launch com.Apple.test.WebDriverAgentRunner-Runner, NSUnderlyingError=0x7f8ec758be20 {Error Domain=DTXMessage Code=1 “(null)” UserInfo={DTXExceptionKey=The operation couldn’t be completed. Unable to launch com.Apple.test.WebDriverAgentRunner-Runner because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user. : Failed to launch process with bundle identifier ‘com.Apple.test.WebDriverAgentRunner-Runner’}}}}}

その他のログ情報

{
deviceSerialNumber: XXXXXXXXXXXX
identifier: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx6
deviceClass: iPhone
deviceName: qa’s iPhone
deviceIdentifier: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx6
productVersion: 12.1
buildVersion: 16B92
deviceSoftwareVersion: 12.1 (16B92)
deviceArchitecture: arm64
deviceTotalCapacity: 11945508864
deviceAvailableCapacity: 5477302272
deviceIsTransient: NO
ignored: NO
deviceIsBusy: NO
deviceIsPaired: YES
deviceIsActivated: YES
deviceActivationState: Activated
isPasscodeLocked: NO
deviceType: <DVTDeviceType:0x8f7ec4d00ca0 Xcode.DeviceType.iPhone>
supportedDeviceFamilies: (
1
)
applications: (null)
provisioningProfiles: (null)
hasInternalSupport: NO
isSupportedOS: YES
developerDiskMountError: (null)
(null)
bootArgs: (null)
connected: yes
isWirelessEnabled: no
connectionType: direct
hostname: (null)
bonjourServiceName: 90:60:f1:6b:7f:91@fe80::9760:f1ff:fe6b:2f92._Apple-mobdev2._tcp.local.
} (12.1 (16B92))

注:実行中、アプリとwebdriveragentがiphoneデバイスに挿入されて停止しました。

7
Helping Hands

次の手順で問題を解決できました:

  1. 次をアンインストールしました:

    Xcode、Appium、Xcodeコマンドライン、ideviceinstaller、carthage、xpretty、deviceconsole

  2. このビデオガイドに従ってすべてを再インストールしました: https://youtu.be/ySglJIrDVMQ

  3. MacマシンとiPhoneを再起動します

  4. このビデオガイドに従って、xcodeでプロジェクトを再度セットアップします。 https://youtu.be/ySglJIrDVMQ

  5. そしてはい、それは動作します。

1
Helping Hands

IOS開発では、FastlaneXCTestフレームワークを使用し、あなたが説明したのと同じ問題。ただし、実際のデバイスではなくシミュレータを使用しています。それを解決するために、リストのiPhone 6iPhone XS Maxに置き換えましたテストに使用する必要があるシミュレータの。 iPhone 6以外のデバイスも使用できる場合は、この解決策を試してください。

ただし、iPhone 6でアプリケーションをテストする必要がある場合は、対応するシミュレータを再作成できます。 Xcode 10.1では、Window->デバイスとシミュレータを押して、 iPhone 6と呼ばれる行を押し、Backspaceを押します。その後、ウィンドウの左下隅にある+を押して、新しいシミュレータを作成します。次のウィンドウが表示されます:

Create a new simulator

このスクリーンショットにあるとおりにすべてのパラメーターを設定し、Createを押します。その後、テストスイートをもう一度実行してみます。

0
Roman Podymov