-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit b965617.
- Loading branch information
Showing
262 changed files
with
235 additions
and
1,264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug with Comet", | ||
"type": "comet", | ||
"request": "launch", | ||
"preLaunchTask": "comet: Build" | ||
}, | ||
{ | ||
"name": "Debug with Xamarin", | ||
"type": "mono", | ||
"request": "attach", | ||
"address": "localhost", | ||
"port": 10000, | ||
"preLaunchTask": "Run Sample" | ||
}, | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,25 @@ | ||
<# | ||
.SYNOPSIS | ||
Install dependencies for Appium UITests | ||
.DESCRIPTION | ||
This will install or update npm, appium and the following drivers: appium-windows-driver, uiautomator2, xcuitest and mac2 | ||
.PARAMETER appiumVersion | ||
The Appium version to install | ||
.PARAMETER windowsDriverVersion | ||
The windows driver version to update or install | ||
.PARAMETER androidDriverVersion | ||
The uiautomator2 driver version to update or install | ||
.PARAMETER iOSDriverVersion | ||
The xcuitest driver version to update or install | ||
.PARAMETER macDriverVersion | ||
The mac2 driver version to update or install | ||
.EXAMPLE | ||
PS> .\appium-install.ps1 '2.0.0-beta.61' 2.7.2 2.25.1 4.30.2 1.6.1 | ||
This would install or update Appium version 2.0.0-beta.61, the windows driver 2.7.2, the uiautomator2 driver with 2.25.1, the xcuitest driver with 4.30.2 and mac2 driver with 1.6.1 | ||
#> | ||
|
||
|
||
param | ||
( | ||
[string] $appiumVersion = '2.0.0-beta.64', | ||
[string] $windowsDriverVersion = '2.7.2', | ||
[string] $androidDriverVersion = '2.25.1', | ||
[string] $iOSDriverVersion = '4.30.2', | ||
[string] $macDriverVersion = '1.6.1' | ||
) | ||
|
||
node -v | ||
npm install -g npm | ||
node -v | ||
npm install -g appium@$appiumVersion | ||
npm install -g appium@2.0.0-beta.61 | ||
appium -v | ||
$x = appium driver list --installed --json | ConvertFrom-Json | ||
|
||
if(!$x.windows) | ||
{ | ||
appium driver install --source=npm appium-windows-driver@$windowsDriverVersion | ||
} | ||
else | ||
{ | ||
appium driver uninstall windows | ||
appium driver install --source=npm appium-windows-driver@$windowsDriverVersion | ||
appium driver install --source=npm appium-windows-driver | ||
} | ||
|
||
if(!$x.uiautomator2) | ||
{ | ||
appium driver install uiautomator2@$androidDriverVersion | ||
} | ||
else | ||
{ | ||
appium driver uninstall uiautomator2 | ||
appium driver install uiautomator2@$androidDriverVersion | ||
appium driver install uiautomator2 | ||
} | ||
|
||
if(!$x.xcuitest) | ||
{ | ||
appium driver install xcuitest@$iOSDriverVersion | ||
} | ||
else | ||
{ | ||
appium driver uninstall xcuitest | ||
appium driver install xcuitest@$iOSDriverVersion | ||
appium driver install xcuitest | ||
} | ||
|
||
if(!$x.mac2) | ||
{ | ||
appium driver install mac2@$macDriverVersion | ||
} | ||
else | ||
{ | ||
appium driver uninstall mac2 | ||
appium driver install mac2@$macDriverVersion | ||
appium driver install mac2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.