├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── feature-request.md ├── .gitignore ├── .gitmodules ├── DetoxRecorder ├── Actions │ ├── DTXRecordedAction-Private.h │ ├── DTXRecordedAction.h │ ├── DTXRecordedAction.m │ ├── DTXRecordedElement.h │ ├── DTXRecordedElement.m │ ├── _DTXAdjustSliderAction.h │ ├── _DTXAdjustSliderAction.m │ ├── _DTXCodeCommentAction.h │ ├── _DTXCodeCommentAction.m │ ├── _DTXLongPressAction.h │ ├── _DTXLongPressAction.m │ ├── _DTXPickerViewValueChangeAction.h │ ├── _DTXPickerViewValueChangeAction.m │ ├── _DTXReplaceTextAction.h │ ├── _DTXReplaceTextAction.m │ ├── _DTXScrollAction.h │ ├── _DTXScrollAction.m │ ├── _DTXScrollToAction.h │ ├── _DTXScrollToAction.m │ ├── _DTXSetDatePickerDateAction.h │ ├── _DTXSetDatePickerDateAction.m │ ├── _DTXShakeDeviceAction.h │ ├── _DTXShakeDeviceAction.m │ ├── _DTXTakeScreenshotAction.h │ ├── _DTXTakeScreenshotAction.m │ ├── _DTXTapAction.h │ └── _DTXTapAction.m ├── DTXCaptureControlWindow.h ├── DTXCaptureControlWindow.m ├── DTXUIInteractionRecorder-Private.h ├── DTXUIInteractionRecorder.h ├── DTXUIInteractionRecorder.m ├── DetoxRecorder.h ├── DetoxRecorder.pch ├── DetoxRecorder.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── DetoxRecorder.xcscheme │ │ ├── DetoxRecorderCLI.xcscheme │ │ └── DetoxRecorderFramework.xcscheme ├── DetoxRecorderCLI │ ├── RecordingHandler.swift │ ├── Swift-Bridging-Header.h │ ├── main.swift │ └── version.h ├── EventCapture │ ├── ShakeCapture.m │ ├── UIControl+TapCapture.h │ ├── UIControl+TapCapture.m │ ├── UIGestureRecognizer+GestureCapture.h │ ├── UIGestureRecognizer+GestureCapture.m │ ├── UIInputCapture.h │ ├── UIInputCapture.m │ ├── UIScrollView+ScrollToTopCapture.h │ ├── UIScrollView+ScrollToTopCapture.m │ ├── UITableView+SelectionCapture.h │ └── UITableView+SelectionCapture.m ├── Info.plist ├── NSObject+AllSubclasses.h ├── NSObject+AllSubclasses.m ├── Settings │ ├── DTXRecSettingsMultipleChoiceController.h │ ├── DTXRecSettingsMultipleChoiceController.m │ ├── DTXRecSettingsViewController.h │ └── DTXRecSettingsViewController.m └── Utils │ ├── DTXAppleInternals.h │ ├── DTXLoggingSubsystem.h │ ├── NSString+SimulatorSafeTildeExpansion.h │ ├── NSString+SimulatorSafeTildeExpansion.m │ ├── NSUserDefaults+RecorderUtils.h │ ├── NSUserDefaults+RecorderUtils.m │ ├── UIApplication+EnableAccessibility.h │ ├── UIApplication+EnableAccessibility.m │ ├── UIDatePicker+RecorderUtils.h │ ├── UIDatePicker+RecorderUtils.m │ ├── UIPickerView+RecorderUtils.h │ ├── UIPickerView+RecorderUtils.m │ ├── UISlider+RecorderUtils.h │ ├── UISlider+RecorderUtils.m │ ├── UIView+RecorderUtils.h │ ├── UIView+RecorderUtils.m │ ├── UIWindow+RecorderUtils.h │ └── UIWindow+RecorderUtils.m ├── Distribution ├── .gitignore ├── .npmignore ├── package.json └── postinstall.sh ├── Documentation ├── RecordingSettings.md └── Resources │ ├── AddCommentButton.png │ ├── Green.gif │ ├── Orange.gif │ ├── Presentation.gif │ ├── RecordingBar.png │ ├── RecordingSettings.png │ ├── Red.gif │ ├── ScreenshotButton.png │ ├── SettingsButton.png │ ├── StopButton.png │ ├── TapTypeButton.png │ └── Yellow.gif ├── LICENSE ├── README.md ├── Scripts └── updateCopyright.sh ├── Supplementals └── convert_video_to_gif.sh ├── TesterApp ├── UI.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── UI.xcscheme └── UI │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Tab1ViewController.h │ ├── Tab1ViewController.m │ ├── Tab2ViewController.h │ ├── Tab2ViewController.m │ ├── UI.entitlements │ ├── ViewController.h │ ├── ViewController.m │ ├── WebViewController.h │ ├── WebViewController.m │ └── main.m ├── TesterAppRN ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── TesterAppRN-tvOS │ │ └── Info.plist │ ├── TesterAppRN-tvOSTests │ │ └── Info.plist │ ├── TesterAppRN.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TesterAppRN.xcscheme │ ├── TesterAppRN.xcworkspace │ │ └── contents.xcworkspacedata │ ├── TesterAppRN │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── TesterAppRNTests │ │ ├── Info.plist │ │ └── TesterAppRNTests.m ├── metro.config.js ├── package.json └── yarn.lock ├── record.sh └── release.sh /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/.gitmodules -------------------------------------------------------------------------------- /DetoxRecorder/Actions/DTXRecordedAction-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/DTXRecordedAction-Private.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/DTXRecordedAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/DTXRecordedAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/DTXRecordedAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/DTXRecordedAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/DTXRecordedElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/DTXRecordedElement.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/DTXRecordedElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/DTXRecordedElement.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXAdjustSliderAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXAdjustSliderAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXAdjustSliderAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXAdjustSliderAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXCodeCommentAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXCodeCommentAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXCodeCommentAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXCodeCommentAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXLongPressAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXLongPressAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXLongPressAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXLongPressAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXPickerViewValueChangeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXPickerViewValueChangeAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXPickerViewValueChangeAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXPickerViewValueChangeAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXReplaceTextAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXReplaceTextAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXReplaceTextAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXReplaceTextAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXScrollAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXScrollAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXScrollAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXScrollAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXScrollToAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXScrollToAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXScrollToAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXScrollToAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXSetDatePickerDateAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXSetDatePickerDateAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXSetDatePickerDateAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXSetDatePickerDateAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXShakeDeviceAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXShakeDeviceAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXShakeDeviceAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXShakeDeviceAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXTakeScreenshotAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXTakeScreenshotAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXTakeScreenshotAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXTakeScreenshotAction.m -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXTapAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXTapAction.h -------------------------------------------------------------------------------- /DetoxRecorder/Actions/_DTXTapAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Actions/_DTXTapAction.m -------------------------------------------------------------------------------- /DetoxRecorder/DTXCaptureControlWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DTXCaptureControlWindow.h -------------------------------------------------------------------------------- /DetoxRecorder/DTXCaptureControlWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DTXCaptureControlWindow.m -------------------------------------------------------------------------------- /DetoxRecorder/DTXUIInteractionRecorder-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DTXUIInteractionRecorder-Private.h -------------------------------------------------------------------------------- /DetoxRecorder/DTXUIInteractionRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DTXUIInteractionRecorder.h -------------------------------------------------------------------------------- /DetoxRecorder/DTXUIInteractionRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DTXUIInteractionRecorder.m -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.h -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.pch -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.xcodeproj/xcshareddata/xcschemes/DetoxRecorder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.xcodeproj/xcshareddata/xcschemes/DetoxRecorder.xcscheme -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.xcodeproj/xcshareddata/xcschemes/DetoxRecorderCLI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.xcodeproj/xcshareddata/xcschemes/DetoxRecorderCLI.xcscheme -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorder.xcodeproj/xcshareddata/xcschemes/DetoxRecorderFramework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorder.xcodeproj/xcshareddata/xcschemes/DetoxRecorderFramework.xcscheme -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorderCLI/RecordingHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorderCLI/RecordingHandler.swift -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorderCLI/Swift-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorderCLI/Swift-Bridging-Header.h -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorderCLI/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/DetoxRecorderCLI/main.swift -------------------------------------------------------------------------------- /DetoxRecorder/DetoxRecorderCLI/version.h: -------------------------------------------------------------------------------- 1 | "1.0.146" 2 | -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/ShakeCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/ShakeCapture.m -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIControl+TapCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIControl+TapCapture.h -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIControl+TapCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIControl+TapCapture.m -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIGestureRecognizer+GestureCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIGestureRecognizer+GestureCapture.h -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIGestureRecognizer+GestureCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIGestureRecognizer+GestureCapture.m -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIInputCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIInputCapture.h -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIInputCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIInputCapture.m -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIScrollView+ScrollToTopCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIScrollView+ScrollToTopCapture.h -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UIScrollView+ScrollToTopCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UIScrollView+ScrollToTopCapture.m -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UITableView+SelectionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UITableView+SelectionCapture.h -------------------------------------------------------------------------------- /DetoxRecorder/EventCapture/UITableView+SelectionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/EventCapture/UITableView+SelectionCapture.m -------------------------------------------------------------------------------- /DetoxRecorder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Info.plist -------------------------------------------------------------------------------- /DetoxRecorder/NSObject+AllSubclasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/NSObject+AllSubclasses.h -------------------------------------------------------------------------------- /DetoxRecorder/NSObject+AllSubclasses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/NSObject+AllSubclasses.m -------------------------------------------------------------------------------- /DetoxRecorder/Settings/DTXRecSettingsMultipleChoiceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Settings/DTXRecSettingsMultipleChoiceController.h -------------------------------------------------------------------------------- /DetoxRecorder/Settings/DTXRecSettingsMultipleChoiceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Settings/DTXRecSettingsMultipleChoiceController.m -------------------------------------------------------------------------------- /DetoxRecorder/Settings/DTXRecSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Settings/DTXRecSettingsViewController.h -------------------------------------------------------------------------------- /DetoxRecorder/Settings/DTXRecSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Settings/DTXRecSettingsViewController.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/DTXAppleInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/DTXAppleInternals.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/DTXLoggingSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/DTXLoggingSubsystem.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/NSString+SimulatorSafeTildeExpansion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/NSString+SimulatorSafeTildeExpansion.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/NSString+SimulatorSafeTildeExpansion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/NSString+SimulatorSafeTildeExpansion.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/NSUserDefaults+RecorderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/NSUserDefaults+RecorderUtils.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/NSUserDefaults+RecorderUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/NSUserDefaults+RecorderUtils.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIApplication+EnableAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIApplication+EnableAccessibility.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIApplication+EnableAccessibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIApplication+EnableAccessibility.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIDatePicker+RecorderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIDatePicker+RecorderUtils.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIDatePicker+RecorderUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIDatePicker+RecorderUtils.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIPickerView+RecorderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIPickerView+RecorderUtils.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIPickerView+RecorderUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIPickerView+RecorderUtils.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UISlider+RecorderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UISlider+RecorderUtils.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UISlider+RecorderUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UISlider+RecorderUtils.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIView+RecorderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIView+RecorderUtils.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIView+RecorderUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIView+RecorderUtils.m -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIWindow+RecorderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIWindow+RecorderUtils.h -------------------------------------------------------------------------------- /DetoxRecorder/Utils/UIWindow+RecorderUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/DetoxRecorder/Utils/UIWindow+RecorderUtils.m -------------------------------------------------------------------------------- /Distribution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Distribution/.gitignore -------------------------------------------------------------------------------- /Distribution/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Distribution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Distribution/package.json -------------------------------------------------------------------------------- /Distribution/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Distribution/postinstall.sh -------------------------------------------------------------------------------- /Documentation/RecordingSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/RecordingSettings.md -------------------------------------------------------------------------------- /Documentation/Resources/AddCommentButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/AddCommentButton.png -------------------------------------------------------------------------------- /Documentation/Resources/Green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/Green.gif -------------------------------------------------------------------------------- /Documentation/Resources/Orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/Orange.gif -------------------------------------------------------------------------------- /Documentation/Resources/Presentation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/Presentation.gif -------------------------------------------------------------------------------- /Documentation/Resources/RecordingBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/RecordingBar.png -------------------------------------------------------------------------------- /Documentation/Resources/RecordingSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/RecordingSettings.png -------------------------------------------------------------------------------- /Documentation/Resources/Red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/Red.gif -------------------------------------------------------------------------------- /Documentation/Resources/ScreenshotButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/ScreenshotButton.png -------------------------------------------------------------------------------- /Documentation/Resources/SettingsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/SettingsButton.png -------------------------------------------------------------------------------- /Documentation/Resources/StopButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/StopButton.png -------------------------------------------------------------------------------- /Documentation/Resources/TapTypeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/TapTypeButton.png -------------------------------------------------------------------------------- /Documentation/Resources/Yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Documentation/Resources/Yellow.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/updateCopyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Scripts/updateCopyright.sh -------------------------------------------------------------------------------- /Supplementals/convert_video_to_gif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/Supplementals/convert_video_to_gif.sh -------------------------------------------------------------------------------- /TesterApp/UI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TesterApp/UI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TesterApp/UI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TesterApp/UI.xcodeproj/xcshareddata/xcschemes/UI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI.xcodeproj/xcshareddata/xcschemes/UI.xcscheme -------------------------------------------------------------------------------- /TesterApp/UI/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/AppDelegate.h -------------------------------------------------------------------------------- /TesterApp/UI/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/AppDelegate.m -------------------------------------------------------------------------------- /TesterApp/UI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TesterApp/UI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TesterApp/UI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TesterApp/UI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TesterApp/UI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Info.plist -------------------------------------------------------------------------------- /TesterApp/UI/Tab1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Tab1ViewController.h -------------------------------------------------------------------------------- /TesterApp/UI/Tab1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Tab1ViewController.m -------------------------------------------------------------------------------- /TesterApp/UI/Tab2ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Tab2ViewController.h -------------------------------------------------------------------------------- /TesterApp/UI/Tab2ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/Tab2ViewController.m -------------------------------------------------------------------------------- /TesterApp/UI/UI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/UI.entitlements -------------------------------------------------------------------------------- /TesterApp/UI/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/ViewController.h -------------------------------------------------------------------------------- /TesterApp/UI/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/ViewController.m -------------------------------------------------------------------------------- /TesterApp/UI/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/WebViewController.h -------------------------------------------------------------------------------- /TesterApp/UI/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/WebViewController.m -------------------------------------------------------------------------------- /TesterApp/UI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterApp/UI/main.m -------------------------------------------------------------------------------- /TesterAppRN/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /TesterAppRN/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/.gitignore -------------------------------------------------------------------------------- /TesterAppRN/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/.prettierrc.js -------------------------------------------------------------------------------- /TesterAppRN/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /TesterAppRN/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/App.js -------------------------------------------------------------------------------- /TesterAppRN/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/app.json -------------------------------------------------------------------------------- /TesterAppRN/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/babel.config.js -------------------------------------------------------------------------------- /TesterAppRN/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/index.js -------------------------------------------------------------------------------- /TesterAppRN/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/Podfile -------------------------------------------------------------------------------- /TesterAppRN/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/Podfile.lock -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN-tvOS/Info.plist -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN-tvOSTests/Info.plist -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN.xcodeproj/xcshareddata/xcschemes/TesterAppRN.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN.xcodeproj/xcshareddata/xcschemes/TesterAppRN.xcscheme -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN/AppDelegate.h -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN/AppDelegate.m -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN/Info.plist -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRN/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRN/main.m -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRNTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRNTests/Info.plist -------------------------------------------------------------------------------- /TesterAppRN/ios/TesterAppRNTests/TesterAppRNTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/ios/TesterAppRNTests/TesterAppRNTests.m -------------------------------------------------------------------------------- /TesterAppRN/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/metro.config.js -------------------------------------------------------------------------------- /TesterAppRN/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/package.json -------------------------------------------------------------------------------- /TesterAppRN/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/TesterAppRN/yarn.lock -------------------------------------------------------------------------------- /record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/record.sh -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxRecorder/HEAD/release.sh --------------------------------------------------------------------------------