├── .gitignore ├── AC_LICENSE.TXT ├── CFAgent.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── CFAgent-nodebug.xcscheme │ ├── CFAgent.xcscheme │ ├── CFAgentLib.xcscheme │ ├── CFAgentLib_tvOS.xcscheme │ ├── CFAgent_tvOS.xcscheme │ ├── IntegrationApp.xcscheme │ ├── IntegrationTests_1.xcscheme │ ├── IntegrationTests_2.xcscheme │ └── IntegrationTests_3.xcscheme ├── CFAgentLib ├── CFAgentLib.h ├── Categories │ ├── NSExpression+FBFormat.h │ ├── NSExpression+FBFormat.m │ ├── NSString+FBVisualLength.h │ ├── NSString+FBVisualLength.m │ ├── NSString+FBXMLSafeString.h │ ├── NSString+FBXMLSafeString.m │ ├── XCAccessibilityElement+FBComparison.h │ ├── XCAccessibilityElement+FBComparison.m │ ├── XCElementSnapshot+FBHelpers.h │ ├── XCElementSnapshot+FBHelpers.m │ ├── XCElementSnapshot+FBHitPoint.h │ ├── XCElementSnapshot+FBHitPoint.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 │ ├── XCUIApplicationProcess+FBQuiescence.h │ ├── XCUIApplicationProcess+FBQuiescence.m │ ├── XCUICoordinate+FBFix.h │ ├── XCUICoordinate+FBFix.m │ ├── XCUIDevice+CFHelpers.h │ ├── XCUIDevice+CFHelpers.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+FBPickerWheel.h │ ├── XCUIElement+FBPickerWheel.m │ ├── XCUIElement+FBScrolling.h │ ├── XCUIElement+FBScrolling.m │ ├── XCUIElement+FBSwiping.h │ ├── XCUIElement+FBSwiping.m │ ├── XCUIElement+FBTVFocuse.h │ ├── XCUIElement+FBTVFocuse.m │ ├── XCUIElement+FBTap.h │ ├── XCUIElement+FBTap.m │ ├── XCUIElement+FBTyping.h │ ├── XCUIElement+FBTyping.m │ ├── XCUIElement+FBUID.h │ ├── XCUIElement+FBUID.m │ ├── XCUIElement+FBUtilities.h │ ├── XCUIElement+FBUtilities.m │ ├── XCUIElement+FBWebDriverAttributes.h │ ├── XCUIElement+FBWebDriverAttributes.m │ ├── XCUIElementQuery+FBHelpers.h │ └── XCUIElementQuery+FBHelpers.m ├── FBAlert.h ├── FBAlert.m ├── FBApplication.h ├── FBApplication.m ├── Info.plist ├── Routing │ ├── FBElement.h │ ├── FBElementCache.h │ ├── FBElementCache.m │ ├── FBElementUtils.h │ ├── FBElementUtils.m │ ├── FBExceptions.h │ ├── FBExceptions.m │ ├── FBSession-Private.h │ ├── FBSession.h │ ├── FBSession.m │ ├── NNGServer.h │ ├── NNGServer.m │ ├── NNGServer2.h │ └── NNGServer2.m ├── Utilities │ ├── FBActiveAppDetectionPoint.h │ ├── FBActiveAppDetectionPoint.m │ ├── FBAlertsMonitor.h │ ├── FBAlertsMonitor.m │ ├── FBAppiumActionsSynthesizer.h │ ├── FBAppiumActionsSynthesizer.m │ ├── FBBaseActionsParser.m │ ├── FBBaseActionsSynthesizer.h │ ├── FBBaseActionsSynthesizer.m │ ├── FBClassChainQueryParser.h │ ├── FBClassChainQueryParser.m │ ├── FBConfiguration.h │ ├── FBConfiguration.m │ ├── FBDebugLogDelegateDecorator.h │ ├── FBDebugLogDelegateDecorator.m │ ├── FBElementTypeTransformer.h │ ├── FBElementTypeTransformer.m │ ├── FBErrorBuilder.h │ ├── FBErrorBuilder.m │ ├── FBFailureProofTestCase.h │ ├── FBFailureProofTestCase.m │ ├── FBImageIOScaler.h │ ├── FBImageIOScaler.m │ ├── FBImageUtils.h │ ├── FBImageUtils.m │ ├── FBKeyboard.h │ ├── FBKeyboard.m │ ├── FBLogger.h │ ├── FBLogger.m │ ├── FBMacros.h │ ├── FBMathUtils.h │ ├── FBMathUtils.m │ ├── FBNotificationsHelper.h │ ├── FBNotificationsHelper.m │ ├── FBPasteboard.h │ ├── FBPasteboard.m │ ├── FBPredicate.h │ ├── FBPredicate.m │ ├── FBProtocolHelpers.h │ ├── FBProtocolHelpers.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 │ ├── FBXCAXClientProxy.h │ ├── FBXCAXClientProxy.m │ ├── FBXCTestCaseImplementationFailureHoldingProxy.h │ ├── FBXCTestCaseImplementationFailureHoldingProxy.m │ ├── FBXCTestDaemonsProxy.h │ ├── FBXCTestDaemonsProxy.m │ ├── FBXCodeCompatibility.h │ ├── FBXCodeCompatibility.m │ ├── FBXPath-Private.h │ ├── FBXPath.h │ ├── FBXPath.m │ ├── NSPredicate+FBFormat.h │ ├── NSPredicate+FBFormat.m │ ├── XCTestPrivateSymbols.h │ ├── XCTestPrivateSymbols.m │ ├── XCUIApplicationProcessDelay.h │ └── XCUIApplicationProcessDelay.m └── Vendor │ ├── CocoaHTTPServer │ └── LICENSE │ ├── RoutingHTTPServer │ └── LICENSE │ └── YYCache │ ├── YYCache.h │ ├── YYCache.m │ ├── YYDiskCache.h │ ├── YYDiskCache.m │ ├── YYKVStorage.h │ ├── YYKVStorage.m │ ├── YYMemoryCache.h │ └── YYMemoryCache.m ├── CFDriverAgent ├── Info.plist └── UITestingUITests.m ├── Configurations ├── IOSSettings.xcconfig ├── IOSTestSettings.xcconfig ├── TVOSSettings.xcconfig └── TVOSTestSettings.xcconfig ├── LICENSE ├── PATENTS ├── 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 │ ├── XCAccessibilityElement.h │ ├── XCActivityRecord.h │ ├── XCApplicationMonitor.h │ ├── XCApplicationMonitor_iOS.h │ ├── XCApplicationQuery.h │ ├── XCDebugLogDelegate-Protocol.h │ ├── XCDeviceEvent.h │ ├── XCElementSnapshot-XCUIElementSnapshot.h │ ├── XCElementSnapshot.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 ├── WebDriverAgentLib ├── 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 │ ├── FBAppiumMultiTouchActionsIntegrationTests.m │ ├── FBAppiumTouchActionsIntegrationTests.m │ ├── FBAutoAlertsHandlerTests.m │ ├── FBConfigurationTests.m │ ├── FBElementAttributeTests.m │ ├── FBElementScreenshotTests.m │ ├── FBElementSwipingTests.m │ ├── FBElementVisibilityTests.m │ ├── FBFailureProofTestCaseTests.m │ ├── FBForceTouchTests.m │ ├── FBImageIOScalerTests.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 │ ├── 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 │ │ ├── FBApplicationDouble.h │ │ ├── FBApplicationDouble.m │ │ ├── XCUIElementDouble.h │ │ └── XCUIElementDouble.m │ ├── FBClassChainTests.m │ ├── FBConfigurationTests.m │ ├── FBElementCacheTests.m │ ├── FBElementTypeTransformerTests.m │ ├── FBElementUtilitiesTests.m │ ├── FBErrorBuilderTests.m │ ├── FBExceptionHandlerTests.m │ ├── FBMathUtilsTests.m │ ├── FBProtocolHelpersTests.m │ ├── FBRouteTests.m │ ├── FBRunLoopSpinnerTests.m │ ├── FBRuntimeUtilsTests.m │ ├── FBSDKVersionTests.m │ ├── FBSessionTests.m │ ├── FBXMLSafeStringTests.m │ ├── FBXPathTests.m │ ├── Info.plist │ ├── NSExpressionFBFormatTests.m │ ├── NSPredicateFBFormatTests.m │ ├── XCUICoordinateFix.m │ └── XCUIElementHelpersTests.m └── UnitTests_tvOS │ ├── Doubles │ ├── XCUIElementDouble.h │ └── XCUIElementDouble.m │ ├── FBTVNavigationTrackerTests.m │ └── Info.plist ├── lib ├── check-dependencies.js ├── constants.js ├── logger.js ├── no-session-proxy.js ├── utils.js ├── webdriveragent.js └── xcodebuild.js ├── libnng.a ├── nng ├── compat │ └── nanomsg │ │ ├── bus.h │ │ ├── inproc.h │ │ ├── ipc.h │ │ ├── nn.h │ │ ├── pair.h │ │ ├── pipeline.h │ │ ├── pubsub.h │ │ ├── reqrep.h │ │ ├── survey.h │ │ ├── tcp.h │ │ └── ws.h ├── nng.h ├── protocol │ ├── bus0 │ │ └── bus.h │ ├── pair0 │ │ └── pair.h │ ├── pair1 │ │ └── pair.h │ ├── pipeline0 │ │ ├── pull.h │ │ └── push.h │ ├── pubsub0 │ │ ├── pub.h │ │ └── sub.h │ ├── reqrep0 │ │ ├── rep.h │ │ └── req.h │ └── survey0 │ │ ├── respond.h │ │ └── survey.h ├── supplemental │ ├── http │ │ └── http.h │ ├── tls │ │ ├── engine.h │ │ └── tls.h │ └── util │ │ ├── options.h │ │ └── platform.h └── transport │ ├── inproc │ └── inproc.h │ ├── ipc │ └── ipc.h │ ├── tcp │ └── tcp.h │ ├── tls │ └── tls.h │ ├── ws │ └── websocket.h │ └── zerotier │ └── zerotier.h └── ujsonin ├── main.c ├── red_black_tree.c ├── red_black_tree.h ├── string-tree.c ├── string-tree.h ├── ujsonin.c └── ujsonin.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/.gitignore -------------------------------------------------------------------------------- /AC_LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/AC_LICENSE.TXT -------------------------------------------------------------------------------- /CFAgent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CFAgent.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CFAgent.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgent-nodebug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgent-nodebug.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgent.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgent.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgentLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgentLib.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgentLib_tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgentLib_tvOS.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgent_tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/CFAgent_tvOS.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationApp.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_1.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_2.xcscheme -------------------------------------------------------------------------------- /CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgent.xcodeproj/xcshareddata/xcschemes/IntegrationTests_3.xcscheme -------------------------------------------------------------------------------- /CFAgentLib/CFAgentLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/CFAgentLib.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/NSExpression+FBFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/NSExpression+FBFormat.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/NSExpression+FBFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/NSExpression+FBFormat.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/NSString+FBVisualLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/NSString+FBVisualLength.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/NSString+FBVisualLength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/NSString+FBVisualLength.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/NSString+FBXMLSafeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/NSString+FBXMLSafeString.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/NSString+FBXMLSafeString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/NSString+FBXMLSafeString.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCAccessibilityElement+FBComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCAccessibilityElement+FBComparison.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCAccessibilityElement+FBComparison.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCAccessibilityElement+FBComparison.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCElementSnapshot+FBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCElementSnapshot+FBHelpers.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCElementSnapshot+FBHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCElementSnapshot+FBHelpers.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCElementSnapshot+FBHitPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCElementSnapshot+FBHitPoint.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCElementSnapshot+FBHitPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCElementSnapshot+FBHitPoint.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBAlert.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBAlert.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBFocused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBFocused.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBHelpers.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBHelpers.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBQuiescence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBQuiescence.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBQuiescence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBQuiescence.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBTouchAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBTouchAction.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplication+FBTouchAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplication+FBTouchAction.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIApplicationProcess+FBQuiescence.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUICoordinate+FBFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUICoordinate+FBFix.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUICoordinate+FBFix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUICoordinate+FBFix.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+CFHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+CFHelpers.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+CFHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+CFHelpers.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+FBHealthCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+FBHealthCheck.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+FBHealthCheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+FBHealthCheck.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+FBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+FBHelpers.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+FBHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+FBHelpers.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+FBRotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+FBRotation.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIDevice+FBRotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIDevice+FBRotation.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBAccessibility.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBAccessibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBAccessibility.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBCaching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBCaching.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBCaching.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBCaching.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBClassChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBClassChain.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBClassChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBClassChain.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBFind.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBFind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBFind.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBForceTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBForceTouch.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBForceTouch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBForceTouch.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBIsVisible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBIsVisible.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBIsVisible.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBIsVisible.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBPickerWheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBPickerWheel.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBPickerWheel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBPickerWheel.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBScrolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBScrolling.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBScrolling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBScrolling.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBSwiping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBSwiping.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBSwiping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBSwiping.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBTVFocuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBTVFocuse.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBTVFocuse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBTVFocuse.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBTap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBTap.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBTap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBTap.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBTyping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBTyping.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBTyping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBTyping.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBUID.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBUID.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBUtilities.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBUtilities.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBWebDriverAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBWebDriverAttributes.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElement+FBWebDriverAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElement+FBWebDriverAttributes.m -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElementQuery+FBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElementQuery+FBHelpers.h -------------------------------------------------------------------------------- /CFAgentLib/Categories/XCUIElementQuery+FBHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Categories/XCUIElementQuery+FBHelpers.m -------------------------------------------------------------------------------- /CFAgentLib/FBAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/FBAlert.h -------------------------------------------------------------------------------- /CFAgentLib/FBAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/FBAlert.m -------------------------------------------------------------------------------- /CFAgentLib/FBApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/FBApplication.h -------------------------------------------------------------------------------- /CFAgentLib/FBApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/FBApplication.m -------------------------------------------------------------------------------- /CFAgentLib/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Info.plist -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBElement.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBElementCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBElementCache.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBElementCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBElementCache.m -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBElementUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBElementUtils.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBElementUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBElementUtils.m -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBExceptions.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBExceptions.m -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBSession-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBSession-Private.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBSession.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/FBSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/FBSession.m -------------------------------------------------------------------------------- /CFAgentLib/Routing/NNGServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/NNGServer.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/NNGServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/NNGServer.m -------------------------------------------------------------------------------- /CFAgentLib/Routing/NNGServer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/NNGServer2.h -------------------------------------------------------------------------------- /CFAgentLib/Routing/NNGServer2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Routing/NNGServer2.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBActiveAppDetectionPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBActiveAppDetectionPoint.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBActiveAppDetectionPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBActiveAppDetectionPoint.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBAlertsMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBAlertsMonitor.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBAlertsMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBAlertsMonitor.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBAppiumActionsSynthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBAppiumActionsSynthesizer.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBAppiumActionsSynthesizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBAppiumActionsSynthesizer.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBBaseActionsParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBBaseActionsParser.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBBaseActionsSynthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBBaseActionsSynthesizer.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBBaseActionsSynthesizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBBaseActionsSynthesizer.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBClassChainQueryParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBClassChainQueryParser.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBClassChainQueryParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBClassChainQueryParser.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBConfiguration.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBConfiguration.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBDebugLogDelegateDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBDebugLogDelegateDecorator.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBDebugLogDelegateDecorator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBDebugLogDelegateDecorator.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBElementTypeTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBElementTypeTransformer.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBElementTypeTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBElementTypeTransformer.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBErrorBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBErrorBuilder.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBErrorBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBErrorBuilder.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBFailureProofTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBFailureProofTestCase.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBFailureProofTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBFailureProofTestCase.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBImageIOScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBImageIOScaler.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBImageIOScaler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBImageIOScaler.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBImageUtils.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBImageUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBImageUtils.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBKeyboard.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBKeyboard.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBLogger.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBLogger.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBMacros.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBMathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBMathUtils.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBMathUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBMathUtils.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBNotificationsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBNotificationsHelper.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBNotificationsHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBNotificationsHelper.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBPasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBPasteboard.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBPasteboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBPasteboard.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBPredicate.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBPredicate.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBProtocolHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBProtocolHelpers.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBProtocolHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBProtocolHelpers.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBRunLoopSpinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBRunLoopSpinner.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBRunLoopSpinner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBRunLoopSpinner.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBRuntimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBRuntimeUtils.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBRuntimeUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBRuntimeUtils.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBScreen.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBScreen.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBScreenshot.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBScreenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBScreenshot.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBSettings.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBSettings.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBTVNavigationTracker-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBTVNavigationTracker-Private.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBTVNavigationTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBTVNavigationTracker.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBTVNavigationTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBTVNavigationTracker.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBUnattachedAppLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBUnattachedAppLauncher.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBUnattachedAppLauncher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBUnattachedAppLauncher.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBW3CActionsHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBW3CActionsHelpers.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBW3CActionsHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBW3CActionsHelpers.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBW3CActionsSynthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBW3CActionsSynthesizer.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBW3CActionsSynthesizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBW3CActionsSynthesizer.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCAXClientProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCAXClientProxy.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCAXClientProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCAXClientProxy.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCTestCaseImplementationFailureHoldingProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCTestCaseImplementationFailureHoldingProxy.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCTestCaseImplementationFailureHoldingProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCTestCaseImplementationFailureHoldingProxy.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCTestDaemonsProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCTestDaemonsProxy.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCTestDaemonsProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCTestDaemonsProxy.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCodeCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCodeCompatibility.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXCodeCompatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXCodeCompatibility.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXPath-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXPath-Private.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXPath.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/FBXPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/FBXPath.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/NSPredicate+FBFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/NSPredicate+FBFormat.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/NSPredicate+FBFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/NSPredicate+FBFormat.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/XCTestPrivateSymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/XCTestPrivateSymbols.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/XCTestPrivateSymbols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/XCTestPrivateSymbols.m -------------------------------------------------------------------------------- /CFAgentLib/Utilities/XCUIApplicationProcessDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/XCUIApplicationProcessDelay.h -------------------------------------------------------------------------------- /CFAgentLib/Utilities/XCUIApplicationProcessDelay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Utilities/XCUIApplicationProcessDelay.m -------------------------------------------------------------------------------- /CFAgentLib/Vendor/CocoaHTTPServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/CocoaHTTPServer/LICENSE -------------------------------------------------------------------------------- /CFAgentLib/Vendor/RoutingHTTPServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/RoutingHTTPServer/LICENSE -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYCache.h -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYCache.m -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYDiskCache.h -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYDiskCache.m -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYKVStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYKVStorage.h -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYKVStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYKVStorage.m -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYMemoryCache.h -------------------------------------------------------------------------------- /CFAgentLib/Vendor/YYCache/YYMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFAgentLib/Vendor/YYCache/YYMemoryCache.m -------------------------------------------------------------------------------- /CFDriverAgent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFDriverAgent/Info.plist -------------------------------------------------------------------------------- /CFDriverAgent/UITestingUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/CFDriverAgent/UITestingUITests.m -------------------------------------------------------------------------------- /Configurations/IOSSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/Configurations/IOSSettings.xcconfig -------------------------------------------------------------------------------- /Configurations/IOSTestSettings.xcconfig: -------------------------------------------------------------------------------- 1 | EXCLUDED_ARCHS = i386 2 | -------------------------------------------------------------------------------- /Configurations/TVOSSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/Configurations/TVOSSettings.xcconfig -------------------------------------------------------------------------------- /Configurations/TVOSTestSettings.xcconfig: -------------------------------------------------------------------------------- 1 | EXCLUDED_ARCHS = i386 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PATENTS -------------------------------------------------------------------------------- /PrivateHeaders/AccessibilityUtilities/AXSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/AccessibilityUtilities/AXSettings.h -------------------------------------------------------------------------------- /PrivateHeaders/MobileCoreServices/LSApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/MobileCoreServices/LSApplicationWorkspace.h -------------------------------------------------------------------------------- /PrivateHeaders/TextInput/TIPreferencesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/TextInput/TIPreferencesController.h -------------------------------------------------------------------------------- /PrivateHeaders/UIKitCore/UIKeyboardImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/UIKitCore/UIKeyboardImpl.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/CDStructures.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/NSString-XCTAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/NSString-XCTAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/NSValue-XCTestAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/NSValue-XCTestAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UIGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/UIGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UILongPressGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/UILongPressGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UIPanGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/UIPanGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UIPinchGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/UIPinchGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UISwipeGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/UISwipeGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/UITapGestureRecognizer-RecordingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/UITapGestureRecognizer-RecordingAdditions.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCAXClient_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCAXClient_iOS.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCAccessibilityElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCAccessibilityElement.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCActivityRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCActivityRecord.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCApplicationMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCApplicationMonitor.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCApplicationMonitor_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCApplicationMonitor_iOS.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCApplicationQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCApplicationQuery.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCDebugLogDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCDebugLogDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCDeviceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCDeviceEvent.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCElementSnapshot-XCUIElementSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCElementSnapshot-XCUIElementSnapshot.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCElementSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCElementSnapshot.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCEventGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCEventGenerator.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyMappingPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCKeyMappingPath.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyboardInputSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCKeyboardInputSolver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyboardKeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCKeyboardKeyMap.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCKeyboardLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCKeyboardLayout.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCPointerEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCPointerEvent.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCPointerEventPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCPointerEventPath.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSourceCodeRecording.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCSourceCodeRecording.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSourceCodeTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCSourceCodeTreeNode.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSourceCodeTreeNodeEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCSourceCodeTreeNodeEnumerator.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSymbolicationRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCSymbolicationRecord.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSymbolicatorHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCSymbolicatorHolder.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCSynthesizedEventRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCSynthesizedEventRecord.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAXClient-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTAXClient-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAsyncActivity-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTAsyncActivity-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAsyncActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTAsyncActivity.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTAutomationTarget-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTAutomationTarget-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTDarwinNotificationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTDarwinNotificationExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTElementSetTransformer-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTElementSetTransformer-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTKVOExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTKVOExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTMetric.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTNSNotificationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTNSNotificationExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTNSPredicateExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTNSPredicateExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTNSPredicateExpectationObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTNSPredicateExpectationObject-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTRunnerAutomationSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTRunnerAutomationSession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTRunnerDaemonSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTRunnerDaemonSession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTRunnerIDESession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTRunnerIDESession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTTestRunSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTTestRunSession.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTTestRunSessionDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTTestRunSessionDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTUIApplicationMonitor-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTUIApplicationMonitor-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTWaiter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTWaiterDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterDelegatePrivate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTWaiterDelegatePrivate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterManagement-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTWaiterManagement-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTWaiterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTWaiterManager.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTest.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestCase.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestCaseRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestCaseRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestCaseSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestCaseSuite.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestConfiguration.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestContext.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestContextScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestContextScope.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestDriver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestDriverInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestDriverInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestExpectation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestExpectationDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestExpectationDelegate-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestExpectationWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestExpectationWaiter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestLog.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestManager_IDEInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestManager_IDEInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestManager_TestsInterface-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestManager_TestsInterface-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestMisuseObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestMisuseObserver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestObservation-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestObservation-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestObservationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestObservationCenter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestObserver.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestProbe.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestSuite.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestSuiteRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestSuiteRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCTestWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCTestWaiter.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIApplication.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIApplicationImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIApplicationImpl.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIApplicationProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIApplicationProcess.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUICoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUICoordinate.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIDevice.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIElement.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElementAsynchronousHandlerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIElementAsynchronousHandlerWrapper.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElementHitPointCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIElementHitPointCoordinate.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIElementQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIElementQuery.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIHitPointResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIHitPointResult.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderNodeFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIRecorderNodeFinder.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderNodeFinderMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIRecorderNodeFinderMatch.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderTimingMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIRecorderTimingMessage.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIRecorderUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIRecorderUtilities.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIScreen.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/XCUIScreenDataSource-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/XCUIScreenDataSource-Protocol.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCInternalTestRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCInternalTestRun.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCKVOExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCKVOExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTDarwinNotificationExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTDarwinNotificationExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTNSNotificationExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTNSNotificationExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTNSPredicateExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTNSPredicateExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTWaiterImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTWaiterImpl.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestCaseImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTestCaseImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestCaseInterruptionException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTestCaseInterruptionException.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestExpectationImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTestExpectationImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTestImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestObservationCenterImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTestObservationCenterImplementation.h -------------------------------------------------------------------------------- /PrivateHeaders/XCTest/_XCTestSuiteImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/PrivateHeaders/XCTest/_XCTestSuiteImplementation.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/README.md -------------------------------------------------------------------------------- /WebDriverAgentLib: -------------------------------------------------------------------------------- 1 | CFAgentLib -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/AppDelegate.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBAlertViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBNavigationController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBScrollViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/FBTableDataSource.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchSpotView.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchableView.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/TouchableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/TouchableView.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/ViewController.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Classes/ViewController.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationApp/main.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBAlertTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBAlertTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBAppiumMultiTouchActionsIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBAppiumMultiTouchActionsIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBAppiumTouchActionsIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBAppiumTouchActionsIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBAutoAlertsHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBAutoAlertsHandlerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBConfigurationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBElementAttributeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBElementAttributeTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBElementScreenshotTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBElementScreenshotTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBElementSwipingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBElementSwipingTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBElementVisibilityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBElementVisibilityTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBFailureProofTestCaseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBFailureProofTestCaseTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBForceTouchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBForceTouchTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBImageIOScalerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBImageIOScalerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBIntegrationTestCase.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBKeyboardTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBKeyboardTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBPasteboardTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBPasteboardTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBPickerWheelSelectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBPickerWheelSelectTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBSafariAlertTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBSafariAlertTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBScreenTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBScreenTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBScrollingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBScrollingTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBSessionIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBSessionIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBTapTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBTapTest.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBTestMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBTestMacros.h -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBTypingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBTypingTest.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBW3CMultiTouchActionsIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBW3CMultiTouchActionsIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBW3CTouchActionsIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBW3CTouchActionsIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBW3CTypeActionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBW3CTypeActionsTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/FBXPathIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/FBXPathIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCElementSnapshotHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCElementSnapshotHelperTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCElementSnapshotHitPointTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCElementSnapshotHitPointTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIApplicationHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIApplicationHelperTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIDeviceHealthCheckTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIDeviceHealthCheckTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIDeviceHelperTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIDeviceHelperTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIDeviceRotationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIDeviceRotationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIElementAttributesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIElementAttributesTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIElementFBFindTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIElementFBFindTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/IntegrationTests/XCUIElementHelperIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/IntegrationTests/XCUIElementHelperIntegrationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/FBApplicationDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/Doubles/FBApplicationDouble.h -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/FBApplicationDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/Doubles/FBApplicationDouble.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.h -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/Doubles/XCUIElementDouble.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBClassChainTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBClassChainTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBConfigurationTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBElementCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBElementCacheTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBElementTypeTransformerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBElementTypeTransformerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBElementUtilitiesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBElementUtilitiesTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBErrorBuilderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBErrorBuilderTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBExceptionHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBExceptionHandlerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBMathUtilsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBMathUtilsTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBProtocolHelpersTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBProtocolHelpersTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBRouteTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBRouteTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBRunLoopSpinnerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBRunLoopSpinnerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBRuntimeUtilsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBRuntimeUtilsTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBSDKVersionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBSDKVersionTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBSessionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBSessionTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBXMLSafeStringTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBXMLSafeStringTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/FBXPathTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/FBXPathTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/Info.plist -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/NSExpressionFBFormatTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/NSExpressionFBFormatTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/NSPredicateFBFormatTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/NSPredicateFBFormatTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/XCUICoordinateFix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/XCUICoordinateFix.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests/XCUIElementHelpersTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests/XCUIElementHelpersTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.h -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests_tvOS/Doubles/XCUIElementDouble.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/FBTVNavigationTrackerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests_tvOS/FBTVNavigationTrackerTests.m -------------------------------------------------------------------------------- /WebDriverAgentTests/UnitTests_tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/WebDriverAgentTests/UnitTests_tvOS/Info.plist -------------------------------------------------------------------------------- /lib/check-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/lib/check-dependencies.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/no-session-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/lib/no-session-proxy.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/lib/utils.js -------------------------------------------------------------------------------- /lib/webdriveragent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/lib/webdriveragent.js -------------------------------------------------------------------------------- /lib/xcodebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/lib/xcodebuild.js -------------------------------------------------------------------------------- /libnng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/libnng.a -------------------------------------------------------------------------------- /nng/compat/nanomsg/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/bus.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/inproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/inproc.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/ipc.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/nn.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/pair.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/pipeline.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/pubsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/pubsub.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/reqrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/reqrep.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/survey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/survey.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/tcp.h -------------------------------------------------------------------------------- /nng/compat/nanomsg/ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/compat/nanomsg/ws.h -------------------------------------------------------------------------------- /nng/nng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/nng.h -------------------------------------------------------------------------------- /nng/protocol/bus0/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/bus0/bus.h -------------------------------------------------------------------------------- /nng/protocol/pair0/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/pair0/pair.h -------------------------------------------------------------------------------- /nng/protocol/pair1/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/pair1/pair.h -------------------------------------------------------------------------------- /nng/protocol/pipeline0/pull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/pipeline0/pull.h -------------------------------------------------------------------------------- /nng/protocol/pipeline0/push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/pipeline0/push.h -------------------------------------------------------------------------------- /nng/protocol/pubsub0/pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/pubsub0/pub.h -------------------------------------------------------------------------------- /nng/protocol/pubsub0/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/pubsub0/sub.h -------------------------------------------------------------------------------- /nng/protocol/reqrep0/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/reqrep0/rep.h -------------------------------------------------------------------------------- /nng/protocol/reqrep0/req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/reqrep0/req.h -------------------------------------------------------------------------------- /nng/protocol/survey0/respond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/survey0/respond.h -------------------------------------------------------------------------------- /nng/protocol/survey0/survey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/protocol/survey0/survey.h -------------------------------------------------------------------------------- /nng/supplemental/http/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/supplemental/http/http.h -------------------------------------------------------------------------------- /nng/supplemental/tls/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/supplemental/tls/engine.h -------------------------------------------------------------------------------- /nng/supplemental/tls/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/supplemental/tls/tls.h -------------------------------------------------------------------------------- /nng/supplemental/util/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/supplemental/util/options.h -------------------------------------------------------------------------------- /nng/supplemental/util/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/supplemental/util/platform.h -------------------------------------------------------------------------------- /nng/transport/inproc/inproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/transport/inproc/inproc.h -------------------------------------------------------------------------------- /nng/transport/ipc/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/transport/ipc/ipc.h -------------------------------------------------------------------------------- /nng/transport/tcp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/transport/tcp/tcp.h -------------------------------------------------------------------------------- /nng/transport/tls/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/transport/tls/tls.h -------------------------------------------------------------------------------- /nng/transport/ws/websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/transport/ws/websocket.h -------------------------------------------------------------------------------- /nng/transport/zerotier/zerotier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/nng/transport/zerotier/zerotier.h -------------------------------------------------------------------------------- /ujsonin/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/ujsonin/main.c -------------------------------------------------------------------------------- /ujsonin/red_black_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/ujsonin/red_black_tree.c -------------------------------------------------------------------------------- /ujsonin/red_black_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/ujsonin/red_black_tree.h -------------------------------------------------------------------------------- /ujsonin/string-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/ujsonin/string-tree.c -------------------------------------------------------------------------------- /ujsonin/string-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/ujsonin/string-tree.h -------------------------------------------------------------------------------- /ujsonin/ujsonin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/ujsonin/ujsonin.c -------------------------------------------------------------------------------- /ujsonin/ujsonin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryark/ControlFloorAgent/HEAD/ujsonin/ujsonin.h --------------------------------------------------------------------------------