├── .azure-pipelines.yml ├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── functional-test.yml │ ├── pr-title.yml │ ├── publish.js.yml │ ├── unit-test.yml │ └── wda-package.yml ├── .gitignore ├── .mocharc.js ├── .npmrc ├── .releaserc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Configurations ├── IOSSettings.xcconfig ├── IOSTestSettings.xcconfig ├── TVOSSettings.xcconfig └── TVOSTestSettings.xcconfig ├── Fastlane └── Fastfile ├── Gemfile ├── Introduction ├── FailID.png ├── README_zh.md ├── bundleId.png ├── chooseScheme.png ├── connectDevice.jpg ├── ios-airtestIDE.gif ├── ios-inspector.gif ├── login.png ├── question.md ├── question_zh.md ├── signing.png ├── trust_dev.png ├── trust_dev2.png ├── untrusted.jpg ├── version_not_match.png ├── version_not_match2.png └── versions.png ├── LICENSE ├── PrivateHeaders ├── AccessibilityUtilities │ └── AXSettings.h ├── MobileCoreServices │ └── LSApplicationWorkspace.h ├── TextInput │ └── TIPreferencesController.h ├── UIKitCore │ └── UIKeyboardImpl.h └── XCTest │ ├── CDStructures.h │ ├── NSString-XCTAdditions.h │ ├── NSValue-XCTestAdditions.h │ ├── UIGestureRecognizer-RecordingAdditions.h │ ├── UILongPressGestureRecognizer-RecordingAdditions.h │ ├── UIPanGestureRecognizer-RecordingAdditions.h │ ├── UIPinchGestureRecognizer-RecordingAdditions.h │ ├── UISwipeGestureRecognizer-RecordingAdditions.h │ ├── UITapGestureRecognizer-RecordingAdditions.h │ ├── XCAXClient_iOS.h │ ├── XCActivityRecord.h │ ├── XCApplicationMonitor.h │ ├── XCApplicationMonitor_iOS.h │ ├── XCApplicationQuery.h │ ├── XCDebugLogDelegate-Protocol.h │ ├── XCDeviceEvent.h │ ├── XCEventGenerator.h │ ├── XCKeyMappingPath.h │ ├── XCKeyboardInputSolver.h │ ├── XCKeyboardKeyMap.h │ ├── XCKeyboardLayout.h │ ├── XCPointerEvent.h │ ├── XCPointerEventPath.h │ ├── XCSourceCodeRecording.h │ ├── XCSourceCodeTreeNode.h │ ├── XCSourceCodeTreeNodeEnumerator.h │ ├── XCSymbolicationRecord.h │ ├── XCSymbolicatorHolder.h │ ├── XCSynthesizedEventRecord.h │ ├── XCTAXClient-Protocol.h │ ├── XCTAsyncActivity-Protocol.h │ ├── XCTAsyncActivity.h │ ├── XCTAutomationTarget-Protocol.h │ ├── XCTDarwinNotificationExpectation.h │ ├── XCTElementSetTransformer-Protocol.h │ ├── XCTKVOExpectation.h │ ├── XCTMetric.h │ ├── XCTNSNotificationExpectation.h │ ├── XCTNSPredicateExpectation.h │ ├── XCTNSPredicateExpectationObject-Protocol.h │ ├── XCTRunnerAutomationSession.h │ ├── XCTRunnerDaemonSession.h │ ├── XCTRunnerIDESession.h │ ├── XCTTestRunSession.h │ ├── XCTTestRunSessionDelegate-Protocol.h │ ├── XCTUIApplicationMonitor-Protocol.h │ ├── XCTWaiter.h │ ├── XCTWaiterDelegate-Protocol.h │ ├── XCTWaiterDelegatePrivate-Protocol.h │ ├── XCTWaiterManagement-Protocol.h │ ├── XCTWaiterManager.h │ ├── XCTest.h │ ├── XCTestCase.h │ ├── XCTestCaseRun.h │ ├── XCTestCaseSuite.h │ ├── XCTestConfiguration.h │ ├── XCTestContext.h │ ├── XCTestContextScope.h │ ├── XCTestDriver.h │ ├── XCTestDriverInterface-Protocol.h │ ├── XCTestExpectation.h │ ├── XCTestExpectationDelegate-Protocol.h │ ├── XCTestExpectationWaiter.h │ ├── XCTestLog.h │ ├── XCTestManager_IDEInterface-Protocol.h │ ├── XCTestManager_ManagerInterface-Protocol.h │ ├── XCTestManager_TestsInterface-Protocol.h │ ├── XCTestMisuseObserver.h │ ├── XCTestObservation-Protocol.h │ ├── XCTestObservationCenter.h │ ├── XCTestObserver.h │ ├── XCTestProbe.h │ ├── XCTestRun.h │ ├── XCTestSuite.h │ ├── XCTestSuiteRun.h │ ├── XCTestWaiter.h │ ├── XCUIApplication.h │ ├── XCUIApplicationImpl.h │ ├── XCUIApplicationProcess.h │ ├── XCUICoordinate.h │ ├── XCUIDevice.h │ ├── XCUIElement.h │ ├── XCUIElementAsynchronousHandlerWrapper.h │ ├── XCUIElementHitPointCoordinate.h │ ├── XCUIElementQuery.h │ ├── XCUIHitPointResult.h │ ├── XCUIRecorderNodeFinder.h │ ├── XCUIRecorderNodeFinderMatch.h │ ├── XCUIRecorderTimingMessage.h │ ├── XCUIRecorderUtilities.h │ ├── XCUIScreen.h │ ├── XCUIScreenDataSource-Protocol.h │ ├── _XCInternalTestRun.h │ ├── _XCKVOExpectationImplementation.h │ ├── _XCTDarwinNotificationExpectationImplementation.h │ ├── _XCTNSNotificationExpectationImplementation.h │ ├── _XCTNSPredicateExpectationImplementation.h │ ├── _XCTWaiterImpl.h │ ├── _XCTestCaseImplementation.h │ ├── _XCTestCaseInterruptionException.h │ ├── _XCTestExpectationImplementation.h │ ├── _XCTestImplementation.h │ ├── _XCTestObservationCenterImplementation.h │ └── _XCTestSuiteImplementation.h ├── README.md ├── Scripts ├── build-webdriveragent.js ├── build.sh ├── ci │ ├── build-real.sh │ └── build-sim.sh ├── fetch-prebuilt-wda.js └── update-wda-version.js ├── WebDriverAgent.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── IntegrationApp.xcscheme │ ├── IntegrationTests_1.xcscheme │ ├── IntegrationTests_2.xcscheme │ ├── IntegrationTests_3.xcscheme │ ├── WebDriverAgentLib.xcscheme │ ├── WebDriverAgentLib_tvOS.xcscheme │ ├── WebDriverAgentRunner-nodebug.xcscheme │ ├── WebDriverAgentRunner.xcscheme │ └── WebDriverAgentRunner_tvOS.xcscheme ├── WebDriverAgentLib ├── Categories │ ├── FBXCElementSnapshotWrapper+Helpers.h │ ├── FBXCElementSnapshotWrapper+Helpers.m │ ├── NSDictionary+FBUtf8SafeDictionary.h │ ├── NSDictionary+FBUtf8SafeDictionary.m │ ├── NSExpression+FBFormat.h │ ├── NSExpression+FBFormat.m │ ├── NSString+FBVisualLength.h │ ├── NSString+FBVisualLength.m │ ├── NSString+FBXMLSafeString.h │ ├── NSString+FBXMLSafeString.m │ ├── XCAXClient_iOS+FBSnapshotReqParams.h │ ├── XCAXClient_iOS+FBSnapshotReqParams.m │ ├── XCTIssue+FBPatcher.h │ ├── XCTIssue+FBPatcher.m │ ├── XCUIApplication+FBAlert.h │ ├── XCUIApplication+FBAlert.m │ ├── XCUIApplication+FBFocused.h │ ├── XCUIApplication+FBHelpers.h │ ├── XCUIApplication+FBHelpers.m │ ├── XCUIApplication+FBQuiescence.h │ ├── XCUIApplication+FBQuiescence.m │ ├── XCUIApplication+FBTouchAction.h │ ├── XCUIApplication+FBTouchAction.m │ ├── XCUIApplication+FBUIInterruptions.h │ ├── XCUIApplication+FBUIInterruptions.m │ ├── XCUIApplicationProcess+FBQuiescence.h │ ├── XCUIApplicationProcess+FBQuiescence.m │ ├── XCUIDevice+FBHealthCheck.h │ ├── XCUIDevice+FBHealthCheck.m │ ├── XCUIDevice+FBHelpers.h │ ├── XCUIDevice+FBHelpers.m │ ├── XCUIDevice+FBRotation.h │ ├── XCUIDevice+FBRotation.m │ ├── XCUIElement+FBAccessibility.h │ ├── XCUIElement+FBAccessibility.m │ ├── XCUIElement+FBCaching.h │ ├── XCUIElement+FBCaching.m │ ├── XCUIElement+FBClassChain.h │ ├── XCUIElement+FBClassChain.m │ ├── XCUIElement+FBFind.h │ ├── XCUIElement+FBFind.m │ ├── XCUIElement+FBForceTouch.h │ ├── XCUIElement+FBForceTouch.m │ ├── XCUIElement+FBIsVisible.h │ ├── XCUIElement+FBIsVisible.m │ ├── XCUIElement+FBMinMax.h │ ├── XCUIElement+FBMinMax.m │ ├── XCUIElement+FBPickerWheel.h │ ├── XCUIElement+FBPickerWheel.m │ ├── XCUIElement+FBResolve.h │ ├── XCUIElement+FBResolve.m │ ├── XCUIElement+FBScrolling.h │ ├── XCUIElement+FBScrolling.m │ ├── XCUIElement+FBSwiping.h │ ├── XCUIElement+FBSwiping.m │ ├── XCUIElement+FBTVFocuse.h │ ├── XCUIElement+FBTVFocuse.m │ ├── XCUIElement+FBTyping.h │ ├── XCUIElement+FBTyping.m │ ├── XCUIElement+FBUID.h │ ├── XCUIElement+FBUID.m │ ├── XCUIElement+FBUtilities.h │ ├── XCUIElement+FBUtilities.m │ ├── XCUIElement+FBVisibleFrame.h │ ├── XCUIElement+FBVisibleFrame.m │ ├── XCUIElement+FBWebDriverAttributes.h │ ├── XCUIElement+FBWebDriverAttributes.m │ ├── XCUIElementQuery+FBHelpers.h │ └── XCUIElementQuery+FBHelpers.m ├── Commands │ ├── FBAlertViewCommands.h │ ├── FBAlertViewCommands.m │ ├── FBCustomCommands.h │ ├── FBCustomCommands.m │ ├── FBDebugCommands.h │ ├── FBDebugCommands.m │ ├── FBElementCommands.h │ ├── FBElementCommands.m │ ├── FBFindElementCommands.h │ ├── FBFindElementCommands.m │ ├── FBOrientationCommands.h │ ├── FBOrientationCommands.m │ ├── FBScreenshotCommands.h │ ├── FBScreenshotCommands.m │ ├── FBSessionCommands.h │ ├── FBSessionCommands.m │ ├── FBTouchActionCommands.h │ ├── FBTouchActionCommands.m │ ├── FBTouchIDCommands.h │ ├── FBTouchIDCommands.m │ ├── FBUnknownCommands.h │ ├── FBUnknownCommands.m │ ├── FBVideoCommands.h │ └── FBVideoCommands.m ├── FBAlert.h ├── FBAlert.m ├── Info.plist ├── Routing │ ├── FBCommandHandler.h │ ├── FBCommandStatus.h │ ├── FBCommandStatus.m │ ├── FBElement.h │ ├── FBElementCache.h │ ├── FBElementCache.m │ ├── FBElementUtils.h │ ├── FBElementUtils.m │ ├── FBExceptionHandler.h │ ├── FBExceptionHandler.m │ ├── FBExceptions.h │ ├── FBExceptions.m │ ├── FBHTTPStatusCodes.h │ ├── FBResponseJSONPayload.h │ ├── FBResponseJSONPayload.m │ ├── FBResponsePayload.h │ ├── FBResponsePayload.m │ ├── FBRoute.h │ ├── FBRoute.m │ ├── FBRouteRequest-Private.h │ ├── FBRouteRequest.h │ ├── FBRouteRequest.m │ ├── FBScreenRecordingContainer.h │ ├── FBScreenRecordingContainer.m │ ├── FBScreenRecordingPromise.h │ ├── FBScreenRecordingPromise.m │ ├── FBScreenRecordingRequest.h │ ├── FBScreenRecordingRequest.m │ ├── FBSession-Private.h │ ├── FBSession.h │ ├── FBSession.m │ ├── FBTCPSocket.h │ ├── FBTCPSocket.m │ ├── FBWebServer.h │ ├── FBWebServer.m │ ├── FBXCAccessibilityElement.h │ ├── FBXCAccessibilityElement.m │ ├── FBXCDeviceEvent.h │ ├── FBXCDeviceEvent.m │ ├── FBXCElementSnapshot.h │ ├── FBXCElementSnapshot.m │ ├── FBXCElementSnapshotWrapper.h │ └── FBXCElementSnapshotWrapper.m ├── Utilities │ ├── FBAccessibilityTraits.h │ ├── FBAccessibilityTraits.m │ ├── FBActiveAppDetectionPoint.h │ ├── FBActiveAppDetectionPoint.m │ ├── FBAlertsMonitor.h │ ├── FBAlertsMonitor.m │ ├── FBBaseActionsSynthesizer.h │ ├── FBBaseActionsSynthesizer.m │ ├── FBCapabilities.h │ ├── FBCapabilities.m │ ├── FBClassChainQueryParser.h │ ├── FBClassChainQueryParser.m │ ├── FBConfiguration.h │ ├── FBConfiguration.m │ ├── FBDebugLogDelegateDecorator.h │ ├── FBDebugLogDelegateDecorator.m │ ├── FBElementHelpers.h │ ├── FBElementHelpers.m │ ├── FBElementTypeTransformer.h │ ├── FBElementTypeTransformer.m │ ├── FBErrorBuilder.h │ ├── FBErrorBuilder.m │ ├── FBFailureProofTestCase.h │ ├── FBFailureProofTestCase.m │ ├── FBImageProcessor.h │ ├── FBImageProcessor.m │ ├── FBImageUtils.h │ ├── FBImageUtils.m │ ├── FBKeyboard.h │ ├── FBKeyboard.m │ ├── FBLogger.h │ ├── FBLogger.m │ ├── FBMacros.h │ ├── FBMathUtils.h │ ├── FBMathUtils.m │ ├── FBMjpegServer.h │ ├── FBMjpegServer.m │ ├── FBNotificationsHelper.h │ ├── FBNotificationsHelper.m │ ├── FBPasteboard.h │ ├── FBPasteboard.m │ ├── FBProtocolHelpers.h │ ├── FBProtocolHelpers.m │ ├── FBReflectionUtils.h │ ├── FBReflectionUtils.m │ ├── FBRunLoopSpinner.h │ ├── FBRunLoopSpinner.m │ ├── FBRuntimeUtils.h │ ├── FBRuntimeUtils.m │ ├── FBScreen.h │ ├── FBScreen.m │ ├── FBScreenshot.h │ ├── FBScreenshot.m │ ├── FBSettings.h │ ├── FBSettings.m │ ├── FBTVNavigationTracker-Private.h │ ├── FBTVNavigationTracker.h │ ├── FBTVNavigationTracker.m │ ├── FBUnattachedAppLauncher.h │ ├── FBUnattachedAppLauncher.m │ ├── FBW3CActionsHelpers.h │ ├── FBW3CActionsHelpers.m │ ├── FBW3CActionsSynthesizer.h │ ├── FBW3CActionsSynthesizer.m │ ├── FBWebServerParams.h │ ├── FBWebServerParams.m │ ├── FBXCAXClientProxy.h │ ├── FBXCAXClientProxy.m │ ├── FBXCTestDaemonsProxy.h │ ├── FBXCTestDaemonsProxy.m │ ├── FBXCodeCompatibility.h │ ├── FBXCodeCompatibility.m │ ├── FBXMLGenerationOptions.h │ ├── FBXMLGenerationOptions.m │ ├── FBXPath-Private.h │ ├── FBXPath.h │ ├── FBXPath.m │ ├── LRUCache │ │ ├── LRUCache.h │ │ ├── LRUCache.m │ │ ├── LRUCacheNode.h │ │ └── LRUCacheNode.m │ ├── NSPredicate+FBFormat.h │ ├── NSPredicate+FBFormat.m │ ├── XCTestPrivateSymbols.h │ ├── XCTestPrivateSymbols.m │ ├── XCUIApplicationProcessDelay.h │ └── XCUIApplicationProcessDelay.m ├── Vendor │ ├── CocoaAsyncSocket │ │ ├── GCDAsyncSocket.h │ │ ├── GCDAsyncSocket.m │ │ ├── GCDAsyncUdpSocket.h │ │ └── GCDAsyncUdpSocket.m │ ├── CocoaHTTPServer │ │ ├── Categories │ │ │ ├── DDNumber.h │ │ │ ├── DDNumber.m │ │ │ ├── DDRange.h │ │ │ └── DDRange.m │ │ ├── HTTPConnection.h │ │ ├── HTTPConnection.m │ │ ├── HTTPLogging.h │ │ ├── HTTPMessage.h │ │ ├── HTTPMessage.m │ │ ├── HTTPResponse.h │ │ ├── HTTPServer.h │ │ ├── HTTPServer.m │ │ ├── LICENSE │ │ └── Responses │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDataResponse.m │ │ │ ├── HTTPErrorResponse.h │ │ │ └── HTTPErrorResponse.m │ └── RoutingHTTPServer │ │ ├── HTTPResponseProxy.h │ │ ├── HTTPResponseProxy.m │ │ ├── LICENSE │ │ ├── Route.h │ │ ├── Route.m │ │ ├── RouteRequest.h │ │ ├── RouteRequest.m │ │ ├── RouteResponse.h │ │ ├── RouteResponse.m │ │ ├── RoutingConnection.h │ │ ├── RoutingConnection.m │ │ ├── RoutingHTTPServer.h │ │ └── RoutingHTTPServer.m └── WebDriverAgentLib.h ├── WebDriverAgentRunner ├── Info.plist └── UITestingUITests.m ├── WebDriverAgentTests ├── IntegrationApp │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── FBAlertViewController.h │ │ ├── FBAlertViewController.m │ │ ├── FBNavigationController.h │ │ ├── FBNavigationController.m │ │ ├── FBScrollViewController.h │ │ ├── FBScrollViewController.m │ │ ├── FBTableDataSource.h │ │ ├── FBTableDataSource.m │ │ ├── TouchSpotView.h │ │ ├── TouchSpotView.m │ │ ├── TouchViewController.h │ │ ├── TouchViewController.m │ │ ├── TouchableView.h │ │ ├── TouchableView.m │ │ ├── ViewController.h │ │ └── ViewController.m │ ├── Info.plist │ ├── Resources │ │ └── Base.lproj │ │ │ └── Main.storyboard │ └── main.m ├── IntegrationTests │ ├── FBAlertTests.m │ ├── FBAutoAlertsHandlerTests.m │ ├── FBConfigurationTests.m │ ├── FBElementAttributeTests.m │ ├── FBElementSwipingTests.m │ ├── FBElementVisibilityTests.m │ ├── FBFailureProofTestCaseTests.m │ ├── FBForceTouchTests.m │ ├── FBImageProcessorTests.m │ ├── FBIntegrationTestCase.h │ ├── FBIntegrationTestCase.m │ ├── FBKeyboardTests.m │ ├── FBPasteboardTests.m │ ├── FBPickerWheelSelectTests.m │ ├── FBSafariAlertTests.m │ ├── FBScreenTests.m │ ├── FBScrollingTests.m │ ├── FBSessionIntegrationTests.m │ ├── FBTapTest.m │ ├── FBTestMacros.h │ ├── FBTypingTest.m │ ├── FBVideoRecordingTests.m │ ├── FBW3CMultiTouchActionsIntegrationTests.m │ ├── FBW3CTouchActionsIntegrationTests.m │ ├── FBW3CTypeActionsTests.m │ ├── FBXPathIntegrationTests.m │ ├── Info.plist │ ├── XCElementSnapshotHelperTests.m │ ├── XCElementSnapshotHitPointTests.m │ ├── XCUIApplicationHelperTests.m │ ├── XCUIDeviceHealthCheckTests.m │ ├── XCUIDeviceHelperTests.m │ ├── XCUIDeviceRotationTests.m │ ├── XCUIElementAttributesTests.m │ ├── XCUIElementFBFindTests.m │ └── XCUIElementHelperIntegrationTests.m ├── UnitTests │ ├── Doubles │ │ ├── XCElementSnapshotDouble.h │ │ ├── XCElementSnapshotDouble.m │ │ ├── XCUIApplicationDouble.h │ │ ├── XCUIApplicationDouble.m │ │ ├── XCUIElementDouble.h │ │ └── XCUIElementDouble.m │ ├── FBClassChainTests.m │ ├── FBConfigurationTests.m │ ├── FBElementCacheTests.m │ ├── FBElementTypeTransformerTests.m │ ├── FBElementUtilitiesTests.m │ ├── FBErrorBuilderTests.m │ ├── FBExceptionHandlerTests.m │ ├── FBLRUCacheTests.m │ ├── FBMathUtilsTests.m │ ├── FBProtocolHelpersTests.m │ ├── FBRouteTests.m │ ├── FBRunLoopSpinnerTests.m │ ├── FBRuntimeUtilsTests.m │ ├── FBSDKVersionTests.m │ ├── FBSessionTests.m │ ├── FBXMLSafeStringTests.m │ ├── FBXPathTests.m │ ├── Info.plist │ ├── NSDictionaryFBUtf8SafeTests.m │ ├── NSExpressionFBFormatTests.m │ ├── NSPredicateFBFormatTests.m │ └── XCUIElementHelpersTests.m └── UnitTests_tvOS │ ├── Doubles │ ├── XCUIElementDouble.h │ └── XCUIElementDouble.m │ ├── FBTVNavigationTrackerTests.m │ └── Info.plist ├── azure-templates ├── base_job.yml ├── bootstrap_steps.yml └── node_setup_steps.yml ├── ci-jobs ├── scripts │ ├── azure-print-tag-name.js │ └── build-webdriveragents.js └── templates │ └── build.yml ├── eslint.config.mjs ├── index.ts ├── lib ├── check-dependencies.js ├── constants.js ├── logger.js ├── no-session-proxy.js ├── types.ts ├── utils.js ├── webdriveragent.js └── xcodebuild.js ├── package.json ├── test ├── functional │ ├── desired.js │ ├── helpers │ │ └── simulator.js │ └── webdriveragent-e2e-specs.js └── unit │ ├── utils-specs.js │ └── webdriveragent-specs.js └── tsconfig.json /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/functional-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.github/workflows/functional-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/publish.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.github/workflows/publish.js.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.github/workflows/wda-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.github/workflows/wda-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | require: ['ts-node/register'], 3 | forbidOnly: Boolean(process.env.CI) 4 | }; 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Configurations/IOSSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Configurations/IOSSettings.xcconfig -------------------------------------------------------------------------------- /Configurations/IOSTestSettings.xcconfig: -------------------------------------------------------------------------------- 1 | EXCLUDED_ARCHS = i386 2 | -------------------------------------------------------------------------------- /Configurations/TVOSSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Configurations/TVOSSettings.xcconfig -------------------------------------------------------------------------------- /Configurations/TVOSTestSettings.xcconfig: -------------------------------------------------------------------------------- 1 | EXCLUDED_ARCHS = i386 2 | -------------------------------------------------------------------------------- /Fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Fastlane/Fastfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane", '2.217.0' 4 | -------------------------------------------------------------------------------- /Introduction/FailID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/FailID.png -------------------------------------------------------------------------------- /Introduction/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/README_zh.md -------------------------------------------------------------------------------- /Introduction/bundleId.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/bundleId.png -------------------------------------------------------------------------------- /Introduction/chooseScheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/chooseScheme.png -------------------------------------------------------------------------------- /Introduction/connectDevice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/connectDevice.jpg -------------------------------------------------------------------------------- /Introduction/ios-airtestIDE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/ios-airtestIDE.gif -------------------------------------------------------------------------------- /Introduction/ios-inspector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/ios-inspector.gif -------------------------------------------------------------------------------- /Introduction/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/login.png -------------------------------------------------------------------------------- /Introduction/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/question.md -------------------------------------------------------------------------------- /Introduction/question_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/question_zh.md -------------------------------------------------------------------------------- /Introduction/signing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/signing.png -------------------------------------------------------------------------------- /Introduction/trust_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/trust_dev.png -------------------------------------------------------------------------------- /Introduction/trust_dev2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/trust_dev2.png -------------------------------------------------------------------------------- /Introduction/untrusted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/untrusted.jpg -------------------------------------------------------------------------------- /Introduction/version_not_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/version_not_match.png -------------------------------------------------------------------------------- /Introduction/version_not_match2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/version_not_match2.png -------------------------------------------------------------------------------- /Introduction/versions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Introduction/versions.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/LICENSE -------------------------------------------------------------------------------- /PrivateHeaders/AccessibilityUtilities/AXSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/AccessibilityUtilities/AXSettings.h -------------------------------------------------------------------------------- /PrivateHeaders/MobileCoreServices/LSApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/MobileCoreServices/LSApplicationWorkspace.h -------------------------------------------------------------------------------- /PrivateHeaders/TextInput/TIPreferencesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/TextInput/TIPreferencesController.h -------------------------------------------------------------------------------- /PrivateHeaders/UIKitCore/UIKeyboardImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/UIKitCore/UIKeyboardImpl.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/CDStructures.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/NSString-XCTAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/NSString-XCTAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/NSValue-XCTestAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/NSValue-XCTestAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UIGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/UIGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UILongPressGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/UILongPressGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UIPanGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/UIPanGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UIPinchGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/UIPinchGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UISwipeGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/UISwipeGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UITapGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/UITapGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCAXClient_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCAXClient_iOS.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCActivityRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCActivityRecord.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCApplicationMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCApplicationMonitor.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCApplicationMonitor_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCApplicationMonitor_iOS.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCApplicationQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCApplicationQuery.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCDebugLogDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCDebugLogDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCDeviceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCDeviceEvent.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCEventGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCEventGenerator.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyMappingPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCKeyMappingPath.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyboardInputSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCKeyboardInputSolver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyboardKeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCKeyboardKeyMap.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyboardLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCKeyboardLayout.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCPointerEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCPointerEvent.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCPointerEventPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCPointerEventPath.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSourceCodeRecording.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCSourceCodeRecording.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSourceCodeTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCSourceCodeTreeNode.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSourceCodeTreeNodeEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCSourceCodeTreeNodeEnumerator.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSymbolicationRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCSymbolicationRecord.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSymbolicatorHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCSymbolicatorHolder.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSynthesizedEventRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCSynthesizedEventRecord.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAXClient-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTAXClient-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAsyncActivity-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTAsyncActivity-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAsyncActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTAsyncActivity.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAutomationTarget-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTAutomationTarget-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTDarwinNotificationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTDarwinNotificationExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTElementSetTransformer-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTElementSetTransformer-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTKVOExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTKVOExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTMetric.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTNSNotificationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTNSNotificationExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTNSPredicateExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTNSPredicateExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTNSPredicateExpectationObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTNSPredicateExpectationObject-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTRunnerAutomationSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTRunnerAutomationSession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTRunnerDaemonSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTRunnerDaemonSession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTRunnerIDESession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTRunnerIDESession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTTestRunSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTTestRunSession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTTestRunSessionDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTTestRunSessionDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTUIApplicationMonitor-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTUIApplicationMonitor-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTWaiter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTWaiterDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterDelegatePrivate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTWaiterDelegatePrivate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterManagement-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTWaiterManagement-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTWaiterManager.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTest.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestCase.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestCaseRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestCaseRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestCaseSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestCaseSuite.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestConfiguration.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestContext.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestContextScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestContextScope.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestDriver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestDriverInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestDriverInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestExpectationDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestExpectationDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestExpectationWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestExpectationWaiter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestLog.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestManager_IDEInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestManager_IDEInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestManager_TestsInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestManager_TestsInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestMisuseObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestMisuseObserver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestObservation-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestObservation-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestObservationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestObservationCenter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestObserver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestProbe.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestSuite.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestSuiteRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestSuiteRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCTestWaiter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIApplication.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIApplicationImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIApplicationImpl.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIApplicationProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIApplicationProcess.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUICoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUICoordinate.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIDevice.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIElement.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElementAsynchronousHandlerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIElementAsynchronousHandlerWrapper.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElementHitPointCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIElementHitPointCoordinate.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElementQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIElementQuery.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIHitPointResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIHitPointResult.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderNodeFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIRecorderNodeFinder.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderNodeFinderMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIRecorderNodeFinderMatch.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderTimingMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIRecorderTimingMessage.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIRecorderUtilities.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIScreen.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIScreenDataSource-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/XCUIScreenDataSource-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCInternalTestRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCInternalTestRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCKVOExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCKVOExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTDarwinNotificationExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTDarwinNotificationExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTNSNotificationExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTNSNotificationExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTNSPredicateExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTNSPredicateExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTWaiterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTWaiterImpl.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestCaseImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTestCaseImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestCaseInterruptionException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTestCaseInterruptionException.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTestExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTestImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestObservationCenterImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTestObservationCenterImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestSuiteImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/PrivateHeaders/XCTest/_XCTestSuiteImplementation.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/build-webdriveragent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Scripts/build-webdriveragent.js -------------------------------------------------------------------------------- /Scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Scripts/build.sh -------------------------------------------------------------------------------- /Scripts/ci/build-real.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Scripts/ci/build-real.sh -------------------------------------------------------------------------------- /Scripts/ci/build-sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Scripts/ci/build-sim.sh -------------------------------------------------------------------------------- /Scripts/fetch-prebuilt-wda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Scripts/fetch-prebuilt-wda.js -------------------------------------------------------------------------------- /Scripts/update-wda-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/Scripts/update-wda-version.js -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationApp.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_1.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_2.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_3.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentLib.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentLib_tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentLib_tvOS.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner-nodebug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner-nodebug.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner.xcscheme -------------------------------------------------------------------------------- /WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner_tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgent.xcodeproj/xcshareddata/xcschemes/WebDriverAgentRunner_tvOS.xcscheme -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/FBXCElementSnapshotWrapper+Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/FBXCElementSnapshotWrapper+Helpers.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/FBXCElementSnapshotWrapper+Helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/FBXCElementSnapshotWrapper+Helpers.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSDictionary+FBUtf8SafeDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSDictionary+FBUtf8SafeDictionary.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSDictionary+FBUtf8SafeDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSDictionary+FBUtf8SafeDictionary.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSExpression+FBFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSExpression+FBFormat.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSExpression+FBFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSExpression+FBFormat.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSString+FBVisualLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSString+FBVisualLength.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSString+FBVisualLength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSString+FBVisualLength.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSString+FBXMLSafeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSString+FBXMLSafeString.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/NSString+FBXMLSafeString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/NSString+FBXMLSafeString.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCAXClient_iOS+FBSnapshotReqParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCAXClient_iOS+FBSnapshotReqParams.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCAXClient_iOS+FBSnapshotReqParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCAXClient_iOS+FBSnapshotReqParams.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCTIssue+FBPatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCTIssue+FBPatcher.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCTIssue+FBPatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCTIssue+FBPatcher.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBAlert.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBAlert.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBFocused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBFocused.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBHelpers.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBQuiescence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBQuiescence.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBQuiescence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBQuiescence.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBTouchAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBTouchAction.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBTouchAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBTouchAction.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplication+FBUIInterruptions.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIDevice+FBHealthCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIDevice+FBHealthCheck.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIDevice+FBHealthCheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIDevice+FBHealthCheck.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIDevice+FBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIDevice+FBHelpers.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIDevice+FBHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIDevice+FBHelpers.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIDevice+FBRotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIDevice+FBRotation.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIDevice+FBRotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIDevice+FBRotation.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBAccessibility.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBAccessibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBAccessibility.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBCaching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBCaching.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBCaching.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBCaching.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBClassChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBClassChain.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBClassChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBClassChain.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBFind.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBFind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBFind.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBForceTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBForceTouch.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBForceTouch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBForceTouch.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBIsVisible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBIsVisible.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBIsVisible.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBIsVisible.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBMinMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBMinMax.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBMinMax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBMinMax.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBPickerWheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBPickerWheel.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBPickerWheel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBPickerWheel.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBResolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBResolve.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBResolve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBResolve.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBScrolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBScrolling.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBScrolling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBScrolling.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBSwiping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBSwiping.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBSwiping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBSwiping.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBTVFocuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBTVFocuse.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBTVFocuse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBTVFocuse.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBTyping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBTyping.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBTyping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBTyping.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBUID.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBUID.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBUtilities.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBUtilities.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBVisibleFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBVisibleFrame.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBVisibleFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBVisibleFrame.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBWebDriverAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBWebDriverAttributes.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElement+FBWebDriverAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElement+FBWebDriverAttributes.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElementQuery+FBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElementQuery+FBHelpers.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Categories/XCUIElementQuery+FBHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Categories/XCUIElementQuery+FBHelpers.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBAlertViewCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBAlertViewCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBAlertViewCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBAlertViewCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBCustomCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBCustomCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBCustomCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBCustomCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBDebugCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBDebugCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBDebugCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBDebugCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBElementCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBElementCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBElementCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBElementCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBFindElementCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBFindElementCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBFindElementCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBFindElementCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBOrientationCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBOrientationCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBOrientationCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBOrientationCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBScreenshotCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBScreenshotCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBScreenshotCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBScreenshotCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBSessionCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBSessionCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBSessionCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBSessionCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBTouchActionCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBTouchActionCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBTouchActionCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBTouchActionCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBTouchIDCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBTouchIDCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBTouchIDCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBTouchIDCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBUnknownCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBUnknownCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBUnknownCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBUnknownCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBVideoCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBVideoCommands.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Commands/FBVideoCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Commands/FBVideoCommands.m -------------------------------------------------------------------------------- /WebDriverAgentLib/FBAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/FBAlert.h -------------------------------------------------------------------------------- /WebDriverAgentLib/FBAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/FBAlert.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBCommandHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBCommandHandler.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBCommandStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBCommandStatus.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBCommandStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBCommandStatus.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBElement.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBElementCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBElementCache.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBElementCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBElementCache.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBElementUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBElementUtils.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBElementUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBElementUtils.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBExceptionHandler.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBExceptionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBExceptionHandler.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBExceptions.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBExceptions.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBHTTPStatusCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBHTTPStatusCodes.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBResponseJSONPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBResponseJSONPayload.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBResponseJSONPayload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBResponseJSONPayload.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBResponsePayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBResponsePayload.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBResponsePayload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBResponsePayload.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBRoute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBRoute.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBRoute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBRoute.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBRouteRequest-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBRouteRequest-Private.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBRouteRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBRouteRequest.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBRouteRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBRouteRequest.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBScreenRecordingContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBScreenRecordingContainer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBScreenRecordingContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBScreenRecordingContainer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBScreenRecordingPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBScreenRecordingPromise.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBScreenRecordingPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBScreenRecordingPromise.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBScreenRecordingRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBScreenRecordingRequest.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBScreenRecordingRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBScreenRecordingRequest.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBSession-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBSession-Private.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBSession.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBSession.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBTCPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBTCPSocket.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBTCPSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBTCPSocket.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBWebServer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBWebServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBWebServer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCAccessibilityElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCAccessibilityElement.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCAccessibilityElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCAccessibilityElement.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCDeviceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCDeviceEvent.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCDeviceEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCDeviceEvent.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCElementSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCElementSnapshot.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCElementSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCElementSnapshot.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCElementSnapshotWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCElementSnapshotWrapper.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Routing/FBXCElementSnapshotWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Routing/FBXCElementSnapshotWrapper.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBAccessibilityTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBAccessibilityTraits.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBAccessibilityTraits.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBAccessibilityTraits.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBActiveAppDetectionPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBActiveAppDetectionPoint.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBActiveAppDetectionPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBActiveAppDetectionPoint.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBAlertsMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBAlertsMonitor.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBAlertsMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBAlertsMonitor.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBBaseActionsSynthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBBaseActionsSynthesizer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBBaseActionsSynthesizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBBaseActionsSynthesizer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBCapabilities.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBCapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBCapabilities.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBClassChainQueryParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBClassChainQueryParser.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBClassChainQueryParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBClassChainQueryParser.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBConfiguration.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBConfiguration.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBDebugLogDelegateDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBDebugLogDelegateDecorator.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBDebugLogDelegateDecorator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBDebugLogDelegateDecorator.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBElementHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBElementHelpers.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBElementHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBElementHelpers.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBElementTypeTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBElementTypeTransformer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBElementTypeTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBElementTypeTransformer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBErrorBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBErrorBuilder.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBErrorBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBErrorBuilder.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBFailureProofTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBFailureProofTestCase.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBFailureProofTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBFailureProofTestCase.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBImageProcessor.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBImageProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBImageProcessor.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBImageUtils.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBImageUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBImageUtils.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBKeyboard.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBKeyboard.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBLogger.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBLogger.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBMacros.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBMathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBMathUtils.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBMathUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBMathUtils.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBMjpegServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBMjpegServer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBMjpegServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBMjpegServer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBNotificationsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBNotificationsHelper.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBNotificationsHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBNotificationsHelper.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBPasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBPasteboard.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBPasteboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBPasteboard.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBProtocolHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBProtocolHelpers.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBProtocolHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBProtocolHelpers.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBReflectionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBReflectionUtils.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBReflectionUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBReflectionUtils.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBRunLoopSpinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBRunLoopSpinner.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBRunLoopSpinner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBRunLoopSpinner.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBRuntimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBRuntimeUtils.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBRuntimeUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBRuntimeUtils.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBScreen.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBScreen.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBScreenshot.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBScreenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBScreenshot.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBSettings.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBSettings.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBTVNavigationTracker-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBTVNavigationTracker-Private.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBTVNavigationTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBTVNavigationTracker.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBTVNavigationTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBTVNavigationTracker.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBUnattachedAppLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBUnattachedAppLauncher.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBUnattachedAppLauncher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBUnattachedAppLauncher.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBW3CActionsHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBW3CActionsHelpers.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBW3CActionsHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBW3CActionsHelpers.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBW3CActionsSynthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBW3CActionsSynthesizer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBW3CActionsSynthesizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBW3CActionsSynthesizer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBWebServerParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBWebServerParams.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBWebServerParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBWebServerParams.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXCAXClientProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXCAXClientProxy.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXCAXClientProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXCAXClientProxy.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXCTestDaemonsProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXCTestDaemonsProxy.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXCTestDaemonsProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXCTestDaemonsProxy.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXCodeCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXCodeCompatibility.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXCodeCompatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXCodeCompatibility.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXMLGenerationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXMLGenerationOptions.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXMLGenerationOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXMLGenerationOptions.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXPath-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXPath-Private.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXPath.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/FBXPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/FBXPath.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/LRUCache/LRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/LRUCache/LRUCache.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/LRUCache/LRUCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/LRUCache/LRUCache.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/LRUCache/LRUCacheNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/LRUCache/LRUCacheNode.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/LRUCache/LRUCacheNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/LRUCache/LRUCacheNode.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/NSPredicate+FBFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/NSPredicate+FBFormat.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/NSPredicate+FBFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/NSPredicate+FBFormat.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/XCTestPrivateSymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/XCTestPrivateSymbols.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/XCTestPrivateSymbols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/XCTestPrivateSymbols.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/XCUIApplicationProcessDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/XCUIApplicationProcessDelay.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Utilities/XCUIApplicationProcessDelay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Utilities/XCUIApplicationProcessDelay.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncSocket.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncSocket.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncUdpSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaAsyncSocket/GCDAsyncUdpSocket.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDNumber.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDNumber.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDRange.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Categories/DDRange.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPConnection.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPConnection.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPLogging.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPMessage.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPMessage.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPResponse.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPServer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/HTTPServer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/LICENSE -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/HTTPResponseProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/HTTPResponseProxy.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/HTTPResponseProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/HTTPResponseProxy.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/LICENSE -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/Route.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/Route.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/Route.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteRequest.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteRequest.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteResponse.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RouteResponse.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingConnection.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingConnection.m -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingHTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingHTTPServer.h -------------------------------------------------------------------------------- /WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingHTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/Vendor/RoutingHTTPServer/RoutingHTTPServer.m -------------------------------------------------------------------------------- /WebDriverAgentLib/WebDriverAgentLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentLib/WebDriverAgentLib.h -------------------------------------------------------------------------------- /WebDriverAgentRunner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentRunner/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentRunner/UITestingUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentRunner/UITestingUITests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchableView.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchableView.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/ViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/ViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationApp/main.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBAlertTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBAlertTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBAutoAlertsHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBAutoAlertsHandlerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBConfigurationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBElementAttributeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBElementAttributeTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBElementSwipingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBElementSwipingTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBElementVisibilityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBElementVisibilityTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBFailureProofTestCaseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBFailureProofTestCaseTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBForceTouchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBForceTouchTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBImageProcessorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBImageProcessorTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBKeyboardTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBKeyboardTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBPasteboardTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBPasteboardTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBPickerWheelSelectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBPickerWheelSelectTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBSafariAlertTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBSafariAlertTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBScreenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBScreenTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBScrollingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBScrollingTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBSessionIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBSessionIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBTapTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBTapTest.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBTestMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBTestMacros.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBTypingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBTypingTest.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBVideoRecordingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBVideoRecordingTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBW3CMultiTouchActionsIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBW3CMultiTouchActionsIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBW3CTouchActionsIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBW3CTouchActionsIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBW3CTypeActionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBW3CTypeActionsTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBXPathIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/FBXPathIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCElementSnapshotHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCElementSnapshotHelperTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCElementSnapshotHitPointTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCElementSnapshotHitPointTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIApplicationHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIApplicationHelperTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIDeviceHealthCheckTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIDeviceHealthCheckTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIDeviceHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIDeviceHelperTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIDeviceRotationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIDeviceRotationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIElementAttributesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIElementAttributesTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIElementFBFindTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIElementFBFindTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIElementHelperIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIElementHelperIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCElementSnapshotDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCElementSnapshotDouble.h -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCElementSnapshotDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCElementSnapshotDouble.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCUIApplicationDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCUIApplicationDouble.h -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCUIApplicationDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCUIApplicationDouble.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.h -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBClassChainTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBClassChainTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBConfigurationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBElementCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBElementCacheTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBElementTypeTransformerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBElementTypeTransformerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBElementUtilitiesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBElementUtilitiesTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBErrorBuilderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBErrorBuilderTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBExceptionHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBExceptionHandlerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBLRUCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBLRUCacheTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBMathUtilsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBMathUtilsTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBProtocolHelpersTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBProtocolHelpersTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBRouteTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBRouteTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBRunLoopSpinnerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBRunLoopSpinnerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBRuntimeUtilsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBRuntimeUtilsTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBSDKVersionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBSDKVersionTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBSessionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBSessionTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBXMLSafeStringTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBXMLSafeStringTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBXPathTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/FBXPathTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/NSDictionaryFBUtf8SafeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/NSDictionaryFBUtf8SafeTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/NSExpressionFBFormatTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/NSExpressionFBFormatTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/NSPredicateFBFormatTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/NSPredicateFBFormatTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/XCUIElementHelpersTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests/XCUIElementHelpersTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.h -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/FBTVNavigationTrackerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests_tvOS/FBTVNavigationTrackerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/WebDriverAgentTests/UnitTests_tvOS/Info.plist -------------------------------------------------------------------------------- /azure-templates/base_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/azure-templates/base_job.yml -------------------------------------------------------------------------------- /azure-templates/bootstrap_steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/azure-templates/bootstrap_steps.yml -------------------------------------------------------------------------------- /azure-templates/node_setup_steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/azure-templates/node_setup_steps.yml -------------------------------------------------------------------------------- /ci-jobs/scripts/azure-print-tag-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/ci-jobs/scripts/azure-print-tag-name.js -------------------------------------------------------------------------------- /ci-jobs/scripts/build-webdriveragents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/ci-jobs/scripts/build-webdriveragents.js -------------------------------------------------------------------------------- /ci-jobs/templates/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/ci-jobs/templates/build.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/index.ts -------------------------------------------------------------------------------- /lib/check-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/check-dependencies.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/no-session-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/no-session-proxy.js -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/utils.js -------------------------------------------------------------------------------- /lib/webdriveragent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/webdriveragent.js -------------------------------------------------------------------------------- /lib/xcodebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/lib/xcodebuild.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/package.json -------------------------------------------------------------------------------- /test/functional/desired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/test/functional/desired.js -------------------------------------------------------------------------------- /test/functional/helpers/simulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/test/functional/helpers/simulator.js -------------------------------------------------------------------------------- /test/functional/webdriveragent-e2e-specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/test/functional/webdriveragent-e2e-specs.js -------------------------------------------------------------------------------- /test/unit/utils-specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/test/unit/utils-specs.js -------------------------------------------------------------------------------- /test/unit/webdriveragent-specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/test/unit/webdriveragent-specs.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirtestProject/iOS-Tagent/HEAD/tsconfig.json --------------------------------------------------------------------------------