├── .gitignore ├── ClientApp ├── ClientApp.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.config └── packages.config ├── LICENSE.md ├── README.md ├── Tests ├── AbsoluteXPath │ ├── AbsoluteXPath.csproj │ ├── AbsoluteXPath.sln │ ├── Alarms.cs │ ├── Calculator.cs │ ├── DesktopSession.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── SimpleAttributeExpression.cs │ ├── ValidXPath.cs │ ├── notepad.cs │ └── packages.config ├── Input │ ├── Input.csproj │ ├── Input.sln │ ├── MultiTouchScenarios.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── TestBase.cs │ ├── TouchScenarios.cs │ ├── app.config │ └── packages.config ├── README.md ├── UWPControls │ ├── Button.cs │ ├── CheckBox.cs │ ├── ComboBox.cs │ ├── DatePicker.cs │ ├── ProgressBar.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── RadioButton.cs │ ├── Slider.cs │ ├── TextBlock.cs │ ├── TextBox.cs │ ├── ToggleButton.cs │ ├── ToggleSwitch.cs │ ├── UWPControls.csproj │ ├── UWPControls.sln │ ├── UWPControlsBase.cs │ └── packages.config ├── WebDriverAPI │ ├── Actions.cs │ ├── ActionsPen.cs │ ├── ActionsTouch.cs │ ├── AppSessionBase │ │ ├── AlarmClockBase.cs │ │ ├── CalculatorBase.cs │ │ ├── CommonTestSettings.cs │ │ ├── EdgeBase.cs │ │ ├── Utility.cs │ │ └── WebDriverApiExtensions.cs │ ├── AppiumAppClose.cs │ ├── AppiumAppLaunch.cs │ ├── Back.cs │ ├── Element.cs │ ├── ElementActive.cs │ ├── ElementAttribute.cs │ ├── ElementClear.cs │ ├── ElementClick.cs │ ├── ElementDisplayed.cs │ ├── ElementElement.cs │ ├── ElementElements.cs │ ├── ElementEnabled.cs │ ├── ElementEquals.cs │ ├── ElementLocation.cs │ ├── ElementLocationInView.cs │ ├── ElementName.cs │ ├── ElementSelected.cs │ ├── ElementSendKeys.cs │ ├── ElementSize.cs │ ├── ElementText.cs │ ├── Elements.cs │ ├── Extensions │ │ └── WebElementExtensions.cs │ ├── Forward.cs │ ├── Location.cs │ ├── Mouse.cs │ ├── Orientation.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── Screenshot.cs │ ├── SendKeys.cs │ ├── Session.cs │ ├── Sessions.cs │ ├── Source.cs │ ├── Status.cs │ ├── Timeouts.cs │ ├── Title.cs │ ├── TouchClick.cs │ ├── TouchDoubleClick.cs │ ├── TouchDownMoveUp.cs │ ├── TouchFlick.cs │ ├── TouchLongClick.cs │ ├── TouchScroll.cs │ ├── WebDriverAPI.csproj │ ├── WebDriverAPI.sln │ ├── Window.cs │ ├── app.config │ └── packages.config └── custom.props ├── WinAppDriver.Console ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── WinAppDriver.Console.csproj ├── app.config └── packages.config ├── WinAppDriver.Server ├── NLog.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── WinAppDriver.Server.csproj ├── app.config └── packages.config ├── WinAppDriver.sln ├── WinAppDriver ├── Appium │ ├── CommandInfoRepository.cs │ └── DriverCommand.cs ├── ApplicationProcess.cs ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ ├── BadgeLogo.png │ ├── Logo.png │ ├── SplashScreen.png │ ├── SquareTile150x150.png │ ├── SquareTile71x71.png │ ├── StoreLogo.png │ ├── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ └── WideLogo.png ├── Behaviors │ ├── UnexpectedAlertBehavior.cs │ └── UnexpectedAlertBehavior2.cs ├── Bootstrapper.cs ├── Command.cs ├── CommandEnvironment.cs ├── CommandEnvironmentExtensions.cs ├── CommandHandlerFactory.cs ├── CommandHandlers │ ├── ActionsCommandHandler.cs │ ├── AddCookieCommandHandler.cs │ ├── AlertHandlingCommandHandler.cs │ ├── AsyncElementCommandHandler.cs │ ├── ClearElementCommandHandler.cs │ ├── ClickElementCommandHandler.cs │ ├── CloseCommandHandler.cs │ ├── CommandHandler.cs │ ├── Css │ │ └── BackColorHandler.cs │ ├── DeleteAllCookiesCommandHandler.cs │ ├── ElementCommandHandler.cs │ ├── ElementEqualsCommandHandler.cs │ ├── ExecuteAsyncScriptCommandHandler.cs │ ├── ExecuteScriptCommandHandler.cs │ ├── FindChildElementCommandHandler.cs │ ├── FindChildElementsCommandHandler.cs │ ├── FindElementCommandHandler.cs │ ├── FindElementsCommandHandler.cs │ ├── GetActiveElementCommandHandler.cs │ ├── GetAlertTextCommandHandler.cs │ ├── GetAllCookiesCommandHandler.cs │ ├── GetCurrentUrlCommandHandler.cs │ ├── GetCurrentWindowHandleCommandHandler.cs │ ├── GetElementAttributeValueCommandHandler.cs │ ├── GetElementCssPropertyValueCommandHandler.cs │ ├── GetElementLocationCommandHandler.cs │ ├── GetElementLocationInViewCommandHandler.cs │ ├── GetElementRectCommandHandler.cs │ ├── GetElementSizeCommandHandler.cs │ ├── GetElementTagNameCommandHandler.cs │ ├── GetElementTextCommandHandler.cs │ ├── GetOrientationCommandHandler.cs │ ├── GetPageSourceCommandHandler.cs │ ├── GetTitleCommandHandler.cs │ ├── GetWindowHandlesCommandHandler.cs │ ├── GetWindowRectCommandHandler.cs │ ├── GoBackCommandHandler.cs │ ├── GoForwardCommandHandler.cs │ ├── GoToUrlCommandHandler.cs │ ├── IAsyncCommandHandler.cs │ ├── IsElementDisplayedCommandHandler.cs │ ├── IsElementEnabledCommandHandler.cs │ ├── IsElementSelectedCommandHandler.cs │ ├── MouseButtonDownCommandHandler.cs │ ├── MouseButtonUpCommandHandler.cs │ ├── MouseClickCommandHandler.cs │ ├── MouseDoubleClickCommandHandler.cs │ ├── MouseMoveCommandHandler.cs │ ├── NewSessionCommandHandler.cs │ ├── NoOpCommandHandler.cs │ ├── NotImplementedCommandHandler.cs │ ├── QuitCommandHandler.cs │ ├── RefreshCommandHandler.cs │ ├── ResizeWindowCommandHandler.cs │ ├── ScreenshotCommandHandler.cs │ ├── SendKeysCommandHandler.cs │ ├── SendKeysToActiveElementCommandHandler.cs │ ├── SetImplicitWaitTimeoutCommandHandler.cs │ ├── SetTimeoutCommandHandler.cs │ ├── SetWindowRectCommandHandler.cs │ ├── StatusCommandHandler.cs │ ├── SubmitCommandHandler.cs │ ├── SwitchToFrameCommandHandler.cs │ ├── SwitchToWindowCommandHandler.cs │ └── UnknownCommandHandler.cs ├── DriverCommand.cs ├── DriverHost.cs ├── EventHandler.cs ├── Exceptions │ ├── ElementNotDisplayedException.cs │ ├── IRemoteException.cs │ ├── InvalidParameterValueException.cs │ ├── InvalidSelectorException.cs │ ├── MissingParameterException.cs │ ├── NoSuchElementException.cs │ ├── ObsoleteElementException.cs │ └── StaleElementReferenceException.cs ├── Extensions │ ├── AutomationElementExtensions.cs │ ├── AutomationExtensions.cs │ ├── COMExceptionExtensions.cs │ ├── ControlTypeExtensions.cs │ ├── DictionaryExtensions.cs │ ├── StringExtensions.cs │ └── TreeWalkerExtensions.cs ├── Host.cs ├── Infrastructure │ ├── CacheStore.cs │ ├── ElementCache.cs │ ├── ElementCacheFactory.cs │ ├── ElementFinder.cs │ ├── ElementFinderByType.cs │ └── ElementFinders │ │ ├── ActiveElementFinder.cs │ │ └── WindowElementFinder.cs ├── Input │ ├── Devices │ │ └── Keyboard.cs │ ├── InputDeviceException.cs │ ├── Key.cs │ ├── Keyboard.cs │ ├── KeyboardActions.cs │ ├── Mouse.cs │ ├── MouseActions.cs │ ├── MouseButton.cs │ ├── MouseButtonState.cs │ ├── NamespaceDoc.cs │ ├── NativeMethods.cs │ └── SendMouseInputFlags.cs ├── JsonNetSerializer.cs ├── Package.appxmanifest ├── PngWriter │ ├── ToolStackCRCLib.cs │ ├── ToolStackPNGWriterLib.cs │ └── WritableBitmapExtensions.cs ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml ├── ProtocolValueJsonConverter.cs ├── Response.cs ├── SeleniumModule.cs ├── Strategies │ └── SendKeys │ │ ├── Grouped.cs │ │ ├── ISendKeysStrategy.cs │ │ ├── OneByOne.cs │ │ └── SetValue.cs ├── TextEventArgs.cs ├── Utils │ ├── NativeMethods.cs │ ├── PointComparer.cs │ └── ScreenshotCapture.cs ├── WebBrowserNavigationMonitor.cs ├── WebDriverAtoms.cs ├── WebDriverStatusCode.cs ├── WinAppDriver.csproj ├── XPath │ ├── AutomationElementTreeWalker.cs │ ├── AxisElement.cs │ ├── FormNavigator.cs │ ├── FunctionElement.cs │ ├── Functions │ │ ├── Contains.cs │ │ ├── FunctionElementBase.cs │ │ ├── FunctionFactory.cs │ │ └── StartsWith.cs │ └── Iterators │ │ ├── ChildIterator.cs │ │ ├── DescenendantIterator.cs │ │ └── IteratorBase.cs ├── app.config └── packages.config ├── XPathParser-master ├── .gitignore ├── LICENSE.txt ├── README.md ├── XPathParser.nuspec ├── XPathParser.sln ├── XPathParser │ ├── IXpathBuilder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── XPathAxis.cs │ ├── XPathOperator.cs │ ├── XPathParser.cs │ ├── XPathParser.csproj │ ├── XPathParser.snk │ ├── XPathParserException.cs │ ├── XPathScanner.cs │ └── project.json ├── XPathParserTest │ ├── ControlWalkerBuilder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Test.cs │ ├── XPathParserTest.csproj │ ├── XPathStringBuilder.cs │ └── XPathTreeBuilder.cs ├── appveyor.yml └── architecture.png └── libs ├── Interop.UIAutomationClient.dll ├── ManagedWinapi.dll ├── ManagedWinapiNativeHelper.dll └── UIAComWrapper.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /ClientApp/ClientApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/ClientApp.csproj -------------------------------------------------------------------------------- /ClientApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Form1.Designer.cs -------------------------------------------------------------------------------- /ClientApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Form1.cs -------------------------------------------------------------------------------- /ClientApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Form1.resx -------------------------------------------------------------------------------- /ClientApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Program.cs -------------------------------------------------------------------------------- /ClientApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ClientApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ClientApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Properties/Resources.resx -------------------------------------------------------------------------------- /ClientApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ClientApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/Properties/Settings.settings -------------------------------------------------------------------------------- /ClientApp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/app.config -------------------------------------------------------------------------------- /ClientApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/ClientApp/packages.config -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/README.md -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/AbsoluteXPath.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/AbsoluteXPath.csproj -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/AbsoluteXPath.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/AbsoluteXPath.sln -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/Alarms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/Alarms.cs -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/Calculator.cs -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/DesktopSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/DesktopSession.cs -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/README.md -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/SimpleAttributeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/SimpleAttributeExpression.cs -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/ValidXPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/ValidXPath.cs -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/notepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/notepad.cs -------------------------------------------------------------------------------- /Tests/AbsoluteXPath/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/AbsoluteXPath/packages.config -------------------------------------------------------------------------------- /Tests/Input/Input.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/Input.csproj -------------------------------------------------------------------------------- /Tests/Input/Input.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/Input.sln -------------------------------------------------------------------------------- /Tests/Input/MultiTouchScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/MultiTouchScenarios.cs -------------------------------------------------------------------------------- /Tests/Input/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/README.md -------------------------------------------------------------------------------- /Tests/Input/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/TestBase.cs -------------------------------------------------------------------------------- /Tests/Input/TouchScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/TouchScenarios.cs -------------------------------------------------------------------------------- /Tests/Input/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/app.config -------------------------------------------------------------------------------- /Tests/Input/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/Input/packages.config -------------------------------------------------------------------------------- /Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/README.md -------------------------------------------------------------------------------- /Tests/UWPControls/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/Button.cs -------------------------------------------------------------------------------- /Tests/UWPControls/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/CheckBox.cs -------------------------------------------------------------------------------- /Tests/UWPControls/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/ComboBox.cs -------------------------------------------------------------------------------- /Tests/UWPControls/DatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/DatePicker.cs -------------------------------------------------------------------------------- /Tests/UWPControls/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/ProgressBar.cs -------------------------------------------------------------------------------- /Tests/UWPControls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/UWPControls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/README.md -------------------------------------------------------------------------------- /Tests/UWPControls/RadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/RadioButton.cs -------------------------------------------------------------------------------- /Tests/UWPControls/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/Slider.cs -------------------------------------------------------------------------------- /Tests/UWPControls/TextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/TextBlock.cs -------------------------------------------------------------------------------- /Tests/UWPControls/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/TextBox.cs -------------------------------------------------------------------------------- /Tests/UWPControls/ToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/ToggleButton.cs -------------------------------------------------------------------------------- /Tests/UWPControls/ToggleSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/ToggleSwitch.cs -------------------------------------------------------------------------------- /Tests/UWPControls/UWPControls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/UWPControls.csproj -------------------------------------------------------------------------------- /Tests/UWPControls/UWPControls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/UWPControls.sln -------------------------------------------------------------------------------- /Tests/UWPControls/UWPControlsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/UWPControlsBase.cs -------------------------------------------------------------------------------- /Tests/UWPControls/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/UWPControls/packages.config -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Actions.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ActionsPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ActionsPen.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ActionsTouch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ActionsTouch.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppSessionBase/AlarmClockBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppSessionBase/AlarmClockBase.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppSessionBase/CalculatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppSessionBase/CalculatorBase.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppSessionBase/CommonTestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppSessionBase/CommonTestSettings.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppSessionBase/EdgeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppSessionBase/EdgeBase.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppSessionBase/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppSessionBase/Utility.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppSessionBase/WebDriverApiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppSessionBase/WebDriverApiExtensions.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppiumAppClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppiumAppClose.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/AppiumAppLaunch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/AppiumAppLaunch.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Back.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Back.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Element.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementActive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementActive.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementAttribute.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementClear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementClear.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementClick.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementDisplayed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementDisplayed.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementElement.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementElements.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementEnabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementEnabled.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementEquals.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementLocation.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementLocationInView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementLocationInView.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementName.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementSelected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementSelected.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementSendKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementSendKeys.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementSize.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/ElementText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/ElementText.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Elements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Elements.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Extensions/WebElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Extensions/WebElementExtensions.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Forward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Forward.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Location.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Mouse.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Orientation.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/README.md -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Screenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Screenshot.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/SendKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/SendKeys.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Session.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Sessions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Sessions.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Source.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Status.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Timeouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Timeouts.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Title.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Title.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/TouchClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/TouchClick.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/TouchDoubleClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/TouchDoubleClick.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/TouchDownMoveUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/TouchDownMoveUp.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/TouchFlick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/TouchFlick.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/TouchLongClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/TouchLongClick.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/TouchScroll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/TouchScroll.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/WebDriverAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/WebDriverAPI.csproj -------------------------------------------------------------------------------- /Tests/WebDriverAPI/WebDriverAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/WebDriverAPI.sln -------------------------------------------------------------------------------- /Tests/WebDriverAPI/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/Window.cs -------------------------------------------------------------------------------- /Tests/WebDriverAPI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/app.config -------------------------------------------------------------------------------- /Tests/WebDriverAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/WebDriverAPI/packages.config -------------------------------------------------------------------------------- /Tests/custom.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/Tests/custom.props -------------------------------------------------------------------------------- /WinAppDriver.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Console/Program.cs -------------------------------------------------------------------------------- /WinAppDriver.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinAppDriver.Console/WinAppDriver.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Console/WinAppDriver.Console.csproj -------------------------------------------------------------------------------- /WinAppDriver.Console/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Console/app.config -------------------------------------------------------------------------------- /WinAppDriver.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Console/packages.config -------------------------------------------------------------------------------- /WinAppDriver.Server/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Server/NLog.config -------------------------------------------------------------------------------- /WinAppDriver.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Server/Program.cs -------------------------------------------------------------------------------- /WinAppDriver.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinAppDriver.Server/WinAppDriver.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Server/WinAppDriver.Server.csproj -------------------------------------------------------------------------------- /WinAppDriver.Server/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Server/app.config -------------------------------------------------------------------------------- /WinAppDriver.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.Server/packages.config -------------------------------------------------------------------------------- /WinAppDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver.sln -------------------------------------------------------------------------------- /WinAppDriver/Appium/CommandInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Appium/CommandInfoRepository.cs -------------------------------------------------------------------------------- /WinAppDriver/Appium/DriverCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Appium/DriverCommand.cs -------------------------------------------------------------------------------- /WinAppDriver/ApplicationProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/ApplicationProcess.cs -------------------------------------------------------------------------------- /WinAppDriver/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/BadgeLogo.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/Logo.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/SplashScreen.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/SquareTile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/SquareTile150x150.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/SquareTile71x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/SquareTile71x71.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /WinAppDriver/Assets/WideLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Assets/WideLogo.png -------------------------------------------------------------------------------- /WinAppDriver/Behaviors/UnexpectedAlertBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Behaviors/UnexpectedAlertBehavior.cs -------------------------------------------------------------------------------- /WinAppDriver/Behaviors/UnexpectedAlertBehavior2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Behaviors/UnexpectedAlertBehavior2.cs -------------------------------------------------------------------------------- /WinAppDriver/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Bootstrapper.cs -------------------------------------------------------------------------------- /WinAppDriver/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Command.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandEnvironment.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandEnvironmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandEnvironmentExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlerFactory.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ActionsCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ActionsCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/AddCookieCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/AddCookieCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/AlertHandlingCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/AlertHandlingCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/AsyncElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/AsyncElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ClearElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ClearElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ClickElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ClickElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/CloseCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/CloseCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/CommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/Css/BackColorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/Css/BackColorHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/DeleteAllCookiesCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/DeleteAllCookiesCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ElementEqualsCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ElementEqualsCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ExecuteAsyncScriptCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ExecuteAsyncScriptCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ExecuteScriptCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ExecuteScriptCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/FindChildElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/FindChildElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/FindChildElementsCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/FindChildElementsCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/FindElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/FindElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/FindElementsCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/FindElementsCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetActiveElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetActiveElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetAlertTextCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetAlertTextCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetAllCookiesCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetAllCookiesCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetCurrentUrlCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetCurrentUrlCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetCurrentWindowHandleCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetCurrentWindowHandleCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementAttributeValueCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementAttributeValueCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementCssPropertyValueCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementCssPropertyValueCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementLocationCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementLocationCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementLocationInViewCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementLocationInViewCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementRectCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementRectCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementSizeCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementSizeCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementTagNameCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementTagNameCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetElementTextCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetElementTextCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetOrientationCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetOrientationCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetPageSourceCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetPageSourceCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetTitleCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetTitleCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetWindowHandlesCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetWindowHandlesCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GetWindowRectCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GetWindowRectCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GoBackCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GoBackCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GoForwardCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GoForwardCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/GoToUrlCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/GoToUrlCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/IAsyncCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/IAsyncCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/IsElementDisplayedCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/IsElementDisplayedCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/IsElementEnabledCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/IsElementEnabledCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/IsElementSelectedCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/IsElementSelectedCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/MouseButtonDownCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/MouseButtonDownCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/MouseButtonUpCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/MouseButtonUpCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/MouseClickCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/MouseClickCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/MouseDoubleClickCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/MouseDoubleClickCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/MouseMoveCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/MouseMoveCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/NewSessionCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/NewSessionCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/NoOpCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/NoOpCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/NotImplementedCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/NotImplementedCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/QuitCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/QuitCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/RefreshCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/RefreshCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ResizeWindowCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ResizeWindowCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/ScreenshotCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/ScreenshotCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SendKeysCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SendKeysCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SendKeysToActiveElementCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SendKeysToActiveElementCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SetImplicitWaitTimeoutCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SetImplicitWaitTimeoutCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SetTimeoutCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SetTimeoutCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SetWindowRectCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SetWindowRectCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/StatusCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/StatusCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SubmitCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SubmitCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SwitchToFrameCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SwitchToFrameCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/SwitchToWindowCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/SwitchToWindowCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/CommandHandlers/UnknownCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/CommandHandlers/UnknownCommandHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/DriverCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/DriverCommand.cs -------------------------------------------------------------------------------- /WinAppDriver/DriverHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/DriverHost.cs -------------------------------------------------------------------------------- /WinAppDriver/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/EventHandler.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/ElementNotDisplayedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/ElementNotDisplayedException.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/IRemoteException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/IRemoteException.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/InvalidParameterValueException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/InvalidParameterValueException.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/InvalidSelectorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/InvalidSelectorException.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/MissingParameterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/MissingParameterException.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/NoSuchElementException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/NoSuchElementException.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/ObsoleteElementException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/ObsoleteElementException.cs -------------------------------------------------------------------------------- /WinAppDriver/Exceptions/StaleElementReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Exceptions/StaleElementReferenceException.cs -------------------------------------------------------------------------------- /WinAppDriver/Extensions/AutomationElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Extensions/AutomationElementExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Extensions/AutomationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Extensions/AutomationExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Extensions/COMExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Extensions/COMExceptionExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Extensions/ControlTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Extensions/ControlTypeExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Extensions/TreeWalkerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Extensions/TreeWalkerExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Host.cs -------------------------------------------------------------------------------- /WinAppDriver/Infrastructure/CacheStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Infrastructure/CacheStore.cs -------------------------------------------------------------------------------- /WinAppDriver/Infrastructure/ElementCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Infrastructure/ElementCache.cs -------------------------------------------------------------------------------- /WinAppDriver/Infrastructure/ElementCacheFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Infrastructure/ElementCacheFactory.cs -------------------------------------------------------------------------------- /WinAppDriver/Infrastructure/ElementFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Infrastructure/ElementFinder.cs -------------------------------------------------------------------------------- /WinAppDriver/Infrastructure/ElementFinderByType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Infrastructure/ElementFinderByType.cs -------------------------------------------------------------------------------- /WinAppDriver/Infrastructure/ElementFinders/ActiveElementFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Infrastructure/ElementFinders/ActiveElementFinder.cs -------------------------------------------------------------------------------- /WinAppDriver/Infrastructure/ElementFinders/WindowElementFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Infrastructure/ElementFinders/WindowElementFinder.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/Devices/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/Devices/Keyboard.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/InputDeviceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/InputDeviceException.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/Key.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/Keyboard.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/KeyboardActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/KeyboardActions.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/Mouse.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/MouseActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/MouseActions.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/MouseButton.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/MouseButtonState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/MouseButtonState.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/NamespaceDoc.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/NativeMethods.cs -------------------------------------------------------------------------------- /WinAppDriver/Input/SendMouseInputFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Input/SendMouseInputFlags.cs -------------------------------------------------------------------------------- /WinAppDriver/JsonNetSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/JsonNetSerializer.cs -------------------------------------------------------------------------------- /WinAppDriver/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Package.appxmanifest -------------------------------------------------------------------------------- /WinAppDriver/PngWriter/ToolStackCRCLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/PngWriter/ToolStackCRCLib.cs -------------------------------------------------------------------------------- /WinAppDriver/PngWriter/ToolStackPNGWriterLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/PngWriter/ToolStackPNGWriterLib.cs -------------------------------------------------------------------------------- /WinAppDriver/PngWriter/WritableBitmapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/PngWriter/WritableBitmapExtensions.cs -------------------------------------------------------------------------------- /WinAppDriver/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Properties/AppManifest.xml -------------------------------------------------------------------------------- /WinAppDriver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinAppDriver/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /WinAppDriver/ProtocolValueJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/ProtocolValueJsonConverter.cs -------------------------------------------------------------------------------- /WinAppDriver/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Response.cs -------------------------------------------------------------------------------- /WinAppDriver/SeleniumModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/SeleniumModule.cs -------------------------------------------------------------------------------- /WinAppDriver/Strategies/SendKeys/Grouped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Strategies/SendKeys/Grouped.cs -------------------------------------------------------------------------------- /WinAppDriver/Strategies/SendKeys/ISendKeysStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Strategies/SendKeys/ISendKeysStrategy.cs -------------------------------------------------------------------------------- /WinAppDriver/Strategies/SendKeys/OneByOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Strategies/SendKeys/OneByOne.cs -------------------------------------------------------------------------------- /WinAppDriver/Strategies/SendKeys/SetValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Strategies/SendKeys/SetValue.cs -------------------------------------------------------------------------------- /WinAppDriver/TextEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/TextEventArgs.cs -------------------------------------------------------------------------------- /WinAppDriver/Utils/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Utils/NativeMethods.cs -------------------------------------------------------------------------------- /WinAppDriver/Utils/PointComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Utils/PointComparer.cs -------------------------------------------------------------------------------- /WinAppDriver/Utils/ScreenshotCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/Utils/ScreenshotCapture.cs -------------------------------------------------------------------------------- /WinAppDriver/WebBrowserNavigationMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/WebBrowserNavigationMonitor.cs -------------------------------------------------------------------------------- /WinAppDriver/WebDriverAtoms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/WebDriverAtoms.cs -------------------------------------------------------------------------------- /WinAppDriver/WebDriverStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/WebDriverStatusCode.cs -------------------------------------------------------------------------------- /WinAppDriver/WinAppDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/WinAppDriver.csproj -------------------------------------------------------------------------------- /WinAppDriver/XPath/AutomationElementTreeWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/AutomationElementTreeWalker.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/AxisElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/AxisElement.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/FormNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/FormNavigator.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/FunctionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/FunctionElement.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/Functions/Contains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/Functions/Contains.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/Functions/FunctionElementBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/Functions/FunctionElementBase.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/Functions/FunctionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/Functions/FunctionFactory.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/Functions/StartsWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/Functions/StartsWith.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/Iterators/ChildIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/Iterators/ChildIterator.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/Iterators/DescenendantIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/Iterators/DescenendantIterator.cs -------------------------------------------------------------------------------- /WinAppDriver/XPath/Iterators/IteratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/XPath/Iterators/IteratorBase.cs -------------------------------------------------------------------------------- /WinAppDriver/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/app.config -------------------------------------------------------------------------------- /WinAppDriver/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/WinAppDriver/packages.config -------------------------------------------------------------------------------- /XPathParser-master/.gitignore: -------------------------------------------------------------------------------- 1 | *.lock.json 2 | .vs/ 3 | bin/ 4 | obj/ -------------------------------------------------------------------------------- /XPathParser-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/LICENSE.txt -------------------------------------------------------------------------------- /XPathParser-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/README.md -------------------------------------------------------------------------------- /XPathParser-master/XPathParser.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser.nuspec -------------------------------------------------------------------------------- /XPathParser-master/XPathParser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser.sln -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/IXpathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/IXpathBuilder.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/XPathAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/XPathAxis.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/XPathOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/XPathOperator.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/XPathParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/XPathParser.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/XPathParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/XPathParser.csproj -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/XPathParser.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/XPathParser.snk -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/XPathParserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/XPathParserException.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/XPathScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/XPathScanner.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParser/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParser/project.json -------------------------------------------------------------------------------- /XPathParser-master/XPathParserTest/ControlWalkerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParserTest/ControlWalkerBuilder.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParserTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParserTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParserTest/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParserTest/Test.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParserTest/XPathParserTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParserTest/XPathParserTest.csproj -------------------------------------------------------------------------------- /XPathParser-master/XPathParserTest/XPathStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParserTest/XPathStringBuilder.cs -------------------------------------------------------------------------------- /XPathParser-master/XPathParserTest/XPathTreeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/XPathParserTest/XPathTreeBuilder.cs -------------------------------------------------------------------------------- /XPathParser-master/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/appveyor.yml -------------------------------------------------------------------------------- /XPathParser-master/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/XPathParser-master/architecture.png -------------------------------------------------------------------------------- /libs/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/libs/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /libs/ManagedWinapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/libs/ManagedWinapi.dll -------------------------------------------------------------------------------- /libs/ManagedWinapiNativeHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/libs/ManagedWinapiNativeHelper.dll -------------------------------------------------------------------------------- /libs/UIAComWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfrajtak/WinAppDriver/HEAD/libs/UIAComWrapper.dll --------------------------------------------------------------------------------