├── .gitattributes ├── .gitignore ├── PrepareRelease.ps1 ├── README.md └── WindowsPhoneDriver ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── Microsoft.Phone.Tools.Deploy.Patched ├── DependencyFinder.cs ├── DeviceInfo.cs ├── Microsoft.Phone.Tools.Deploy.Patched.csproj ├── Package10.cs ├── Properties │ └── AssemblyInfo.cs ├── README.md └── Utils.cs ├── NugetPublish.bat ├── Settings.StyleCop ├── TestApp.Test ├── fsharp │ └── test_commands.fsx └── py-functional │ ├── .gitignore │ ├── README.md │ ├── config.py │ ├── requirements.txt │ └── tests │ ├── __init__.py │ └── test_commands.py ├── TestApp ├── App.xaml ├── App.xaml.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 ├── AutomationApi.cs ├── LocalizedStrings.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml ├── Resources │ ├── AppResources.Designer.cs │ ├── AppResources.resx │ ├── feature.settings.png │ └── save.png ├── SampleData │ └── MainViewModelSampleData.xaml ├── TestApp.csproj └── ViewModels │ ├── ItemViewModel.cs │ └── MainViewModel.cs ├── WindowsPhoneDriver.Common ├── CommandResponse.cs ├── ConnectionInformation.cs ├── DriverCommand.cs ├── Exceptions │ ├── AutomationException.cs │ └── InnerDriverRequestException.cs ├── ExtendedCommand.cs ├── HttpResponseHelper.cs ├── JsonErrorCodes.cs ├── JsonWireClasses.cs ├── Properties │ └── AssemblyInfo.cs ├── ResponseStatus.cs ├── WindowsPhoneDriver.Common.csproj └── packages.config ├── WindowsPhoneDriver.InnerDriver ├── AcceptedRequest.cs ├── AutomationServer.cs ├── Automator.cs ├── AutomatorElements.cs ├── Commands │ ├── AlertCommand.cs │ ├── AlertTextCommand.cs │ ├── ClickCommand.cs │ ├── CommandBase.cs │ ├── DisplayedCommand.cs │ ├── ElementCommand.cs │ ├── ElementsCommand.cs │ ├── ExecuteScriptCommand.cs │ ├── FindByHelpers │ │ ├── By.cs │ │ └── Finder.cs │ ├── FrameworkElementExtensions.cs │ ├── GetElementAttributeCommand.cs │ ├── GetElementRectCommand.cs │ ├── GetElementSizeCommand.cs │ ├── InvokeAppBarItemCommand.cs │ ├── LocationCommand.cs │ ├── LocationInViewCommand.cs │ ├── OrientationCommand.cs │ ├── PageSourceCommand.cs │ ├── TextCommand.cs │ └── ValueCommand.cs ├── Properties │ └── AssemblyInfo.cs ├── Public │ ├── ClickableApplicationBarIconButton.cs │ └── ClickableApplicationBarMenuItem.cs ├── WindowsPhoneDriver.InnerDriver.csproj ├── packages.config └── packages │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── WindowsPhoneDriver.OuterDriver ├── App.config ├── Automator │ ├── Automator.cs │ └── Capabilities.cs ├── CommandExecutorDispatchTable.cs ├── CommandExecutors │ ├── ClickElementExecutor.cs │ ├── CloseExecutor.cs │ ├── CommandExecutorBase.cs │ ├── CommandExecutorForward.cs │ ├── CommandHelpers │ │ └── BuildInfo.cs │ ├── ExecuteScriptExecutor.cs │ ├── GetCurrentWindowHandleExecutor.cs │ ├── GetOrientationExecutor.cs │ ├── GetWindowSizeExecutor.cs │ ├── GoBackExecutor.cs │ ├── MouseClickExecutor.cs │ ├── MouseDownExecutor.cs │ ├── MouseMoveToExecutor.cs │ ├── MouseUpExecutor.cs │ ├── NewSessionExecutor.cs │ ├── PullFileExecutor.cs │ ├── PushFileExecutor.cs │ ├── QuitExecutor.cs │ ├── ScreenshotExecutor.cs │ ├── SendKeysToElementExecutor.cs │ ├── StatusExecutor.cs │ ├── TouchFlickExecutor.cs │ ├── TouchScrollExecutor.cs │ └── TouchSingleTapExecutor.cs ├── CommandLineOptions.cs ├── HttpRequest.cs ├── Listener.cs ├── Logger.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Requester.cs ├── UriDispatchTables.cs ├── WindowsPhoneDriver.OuterDriver.csproj └── packages.config ├── WindowsPhoneDriver.sln ├── WindowsPhoneDriver.sln.DotSettings ├── Winium.Logging ├── Logger.cs ├── Properties │ └── AssemblyInfo.cs ├── Winium.Logging.csproj └── packages.config ├── Winium.Mobile.Connectivity ├── ConnectivityException.cs ├── Deployer.cs ├── DeployerFactory.cs ├── Devices.cs ├── Emulator │ ├── EmulatorController.cs │ ├── EmulatorFactory.cs │ ├── VirtualMachine.cs │ └── VirtualMachineException.cs ├── Gestures │ ├── FlickGesture.cs │ ├── IGesture.cs │ ├── ScrollGesture.cs │ └── TapGesture.cs ├── IDeployer.cs ├── Properties │ └── AssemblyInfo.cs ├── Retry.cs └── Winium.Mobile.Connectivity.csproj └── packages └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/.gitignore -------------------------------------------------------------------------------- /PrepareRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/PrepareRelease.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/README.md -------------------------------------------------------------------------------- /WindowsPhoneDriver/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/.nuget/NuGet.Config -------------------------------------------------------------------------------- /WindowsPhoneDriver/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/.nuget/NuGet.exe -------------------------------------------------------------------------------- /WindowsPhoneDriver/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/.nuget/NuGet.targets -------------------------------------------------------------------------------- /WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/DependencyFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/DependencyFinder.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/DeviceInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Microsoft.Phone.Tools.Deploy.Patched.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Microsoft.Phone.Tools.Deploy.Patched.csproj -------------------------------------------------------------------------------- /WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Package10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Package10.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/README.md -------------------------------------------------------------------------------- /WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Microsoft.Phone.Tools.Deploy.Patched/Utils.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/NugetPublish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/NugetPublish.bat -------------------------------------------------------------------------------- /WindowsPhoneDriver/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Settings.StyleCop -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp.Test/fsharp/test_commands.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp.Test/fsharp/test_commands.fsx -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp.Test/py-functional/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp.Test/py-functional/.gitignore -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp.Test/py-functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp.Test/py-functional/README.md -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp.Test/py-functional/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp.Test/py-functional/config.py -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp.Test/py-functional/requirements.txt: -------------------------------------------------------------------------------- 1 | Appium-Python-Client==0.20 2 | pytest==2.8.5 3 | -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp.Test/py-functional/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp.Test/py-functional/tests/__init__.py -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp.Test/py-functional/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp.Test/py-functional/tests/test_commands.py -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/App.xaml -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/App.xaml.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/BadgeLogo.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/Logo.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/SplashScreen.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/SquareTile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/SquareTile150x150.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/SquareTile71x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/SquareTile71x71.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Assets/WideLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Assets/WideLogo.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/AutomationApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/AutomationApi.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/LocalizedStrings.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/MainPage.xaml -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Package.appxmanifest -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Properties/AppManifest.xml -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Resources/AppResources.resx -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Resources/feature.settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Resources/feature.settings.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/Resources/save.png -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/SampleData/MainViewModelSampleData.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/SampleData/MainViewModelSampleData.xaml -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/TestApp/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/TestApp/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/CommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/CommandResponse.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/ConnectionInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/ConnectionInformation.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/DriverCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/DriverCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/Exceptions/AutomationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/Exceptions/AutomationException.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/Exceptions/InnerDriverRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/Exceptions/InnerDriverRequestException.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/ExtendedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/ExtendedCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/HttpResponseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/HttpResponseHelper.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/JsonErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/JsonErrorCodes.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/JsonWireClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/JsonWireClasses.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/ResponseStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/ResponseStatus.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/WindowsPhoneDriver.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/WindowsPhoneDriver.Common.csproj -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.Common/packages.config -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/AcceptedRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/AcceptedRequest.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/AutomationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/AutomationServer.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Automator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Automator.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/AutomatorElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/AutomatorElements.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/AlertCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/AlertCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/AlertTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/AlertTextCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ClickCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ClickCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/CommandBase.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/DisplayedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/DisplayedCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ElementCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ElementCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ElementsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ElementsCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ExecuteScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ExecuteScriptCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/FindByHelpers/By.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/FindByHelpers/By.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/FindByHelpers/Finder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/FindByHelpers/Finder.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/FrameworkElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/FrameworkElementExtensions.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/GetElementAttributeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/GetElementAttributeCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/GetElementRectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/GetElementRectCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/GetElementSizeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/GetElementSizeCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/InvokeAppBarItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/InvokeAppBarItemCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/LocationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/LocationCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/LocationInViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/LocationInViewCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/OrientationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/OrientationCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/PageSourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/PageSourceCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/TextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/TextCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ValueCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Commands/ValueCommand.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Public/ClickableApplicationBarIconButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Public/ClickableApplicationBarIconButton.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Public/ClickableApplicationBarMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/Public/ClickableApplicationBarMenuItem.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/WindowsPhoneDriver.InnerDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/WindowsPhoneDriver.InnerDriver.csproj -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/packages.config -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/packages/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/packages/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/packages/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.InnerDriver/packages/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/App.config -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Automator/Automator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Automator/Automator.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Automator/Capabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Automator/Capabilities.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutorDispatchTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutorDispatchTable.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/ClickElementExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/ClickElementExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CloseExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CloseExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CommandExecutorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CommandExecutorBase.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CommandExecutorForward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CommandExecutorForward.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CommandHelpers/BuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/CommandHelpers/BuildInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/ExecuteScriptExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/ExecuteScriptExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GetCurrentWindowHandleExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GetCurrentWindowHandleExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GetOrientationExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GetOrientationExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GetWindowSizeExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GetWindowSizeExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GoBackExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/GoBackExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseClickExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseClickExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseDownExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseDownExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseMoveToExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseMoveToExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseUpExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/MouseUpExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/NewSessionExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/NewSessionExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/PullFileExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/PullFileExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/PushFileExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/PushFileExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/QuitExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/QuitExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/ScreenshotExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/ScreenshotExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/SendKeysToElementExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/SendKeysToElementExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/StatusExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/StatusExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/TouchFlickExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/TouchFlickExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/TouchScrollExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/TouchScrollExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/TouchSingleTapExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandExecutors/TouchSingleTapExecutor.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/CommandLineOptions.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/HttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/HttpRequest.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Listener.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Logger.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Program.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Requester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/Requester.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/UriDispatchTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/UriDispatchTables.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/WindowsPhoneDriver.OuterDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/WindowsPhoneDriver.OuterDriver.csproj -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.OuterDriver/packages.config -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.sln -------------------------------------------------------------------------------- /WindowsPhoneDriver/WindowsPhoneDriver.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/WindowsPhoneDriver.sln.DotSettings -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Logging/Logger.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Logging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Logging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Logging/Winium.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Logging/Winium.Logging.csproj -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Logging/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Logging/packages.config -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/ConnectivityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/ConnectivityException.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Deployer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Deployer.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/DeployerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/DeployerFactory.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Devices.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/EmulatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/EmulatorController.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/EmulatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/EmulatorFactory.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/VirtualMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/VirtualMachine.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/VirtualMachineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Emulator/VirtualMachineException.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/FlickGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/FlickGesture.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/IGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/IGesture.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/ScrollGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/ScrollGesture.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/TapGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Gestures/TapGesture.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/IDeployer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/IDeployer.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Retry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Retry.cs -------------------------------------------------------------------------------- /WindowsPhoneDriver/Winium.Mobile.Connectivity/Winium.Mobile.Connectivity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/Winium.Mobile.Connectivity/Winium.Mobile.Connectivity.csproj -------------------------------------------------------------------------------- /WindowsPhoneDriver/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2gis/winphonedriver/HEAD/WindowsPhoneDriver/packages/repositories.config --------------------------------------------------------------------------------