forked from JasmineChiu/sample-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Windows samples to Appium sample code repo (appium-boneyard#97)
* Added Windows samples
- Loading branch information
1 parent
8a10d9a
commit c46d2b8
Showing
10 changed files
with
655 additions
and
0 deletions.
There are no files selected for viewing
137 changes: 137 additions & 0 deletions
137
sample-code/examples/C#/CalculatorTest/BasicScenarios.cs
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,137 @@ | ||
//****************************************************************************** | ||
// | ||
/* | ||
Copyright (c) 2016 Appium Committers. All rights reserved. | ||
Licensed to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
// | ||
//****************************************************************************** | ||
|
||
using System; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using OpenQA.Selenium.Remote; | ||
|
||
namespace CalculatorTest | ||
{ | ||
[TestClass] | ||
public class BasicScenarios | ||
{ | ||
protected const string WindowsApplicationDriverUrl = "http://127.0.0.1:4723/wd/hub"; | ||
protected static RemoteWebDriver CalculatorSession; | ||
protected static RemoteWebElement CalculatorResult; | ||
protected static string OriginalCalculatorMode; | ||
|
||
[ClassInitialize] | ||
public static void Setup(TestContext context) | ||
{ | ||
// Launch the calculator app | ||
DesiredCapabilities appCapabilities = new DesiredCapabilities(); | ||
appCapabilities.SetCapability("app", "Microsoft.WindowsCalculator_8wekyb3d8bbwe!App"); | ||
appCapabilities.SetCapability("platformName", "Windows"); | ||
appCapabilities.SetCapability("deviceName", "WindowsPC"); | ||
CalculatorSession = new RemoteWebDriver(new Uri(WindowsApplicationDriverUrl), appCapabilities); | ||
Assert.IsNotNull(CalculatorSession); | ||
CalculatorSession.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(2)); | ||
|
||
// Make sure we're in standard mode | ||
CalculatorSession.FindElementByXPath("//Button[starts-with(@Name, \"Menu\")]").Click(); | ||
OriginalCalculatorMode = CalculatorSession.FindElementByXPath("//List[@AutomationId=\"FlyoutNav\"]//ListItem[@IsSelected=\"True\"]").Text; | ||
CalculatorSession.FindElementByXPath("//ListItem[@Name=\"Standard Calculator\"]").Click(); | ||
|
||
// Use series of operation to locate the calculator result text element as a workaround | ||
// We currently cannot query element by automationId without using modified appium dot net driver | ||
// TODO: Use a proper appium/webdriver nuget package that allow us to query based on automationId | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Clear\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Seven\"]").Click(); | ||
CalculatorResult = CalculatorSession.FindElementByName("Display is 7 ") as RemoteWebElement; | ||
Assert.IsNotNull(CalculatorResult); | ||
} | ||
|
||
[ClassCleanup] | ||
public static void TearDown() | ||
{ | ||
// Restore original mode before closing down | ||
CalculatorSession.FindElementByXPath("//Button[starts-with(@Name, \"Menu\")]").Click(); | ||
CalculatorSession.FindElementByXPath("//ListItem[@Name=\"" + OriginalCalculatorMode + "\"]").Click(); | ||
|
||
CalculatorResult = null; | ||
CalculatorSession.Dispose(); | ||
CalculatorSession = null; | ||
} | ||
|
||
[TestInitialize] | ||
public void Clear() | ||
{ | ||
CalculatorSession.FindElementByName("Clear").Click(); | ||
Assert.AreEqual("Display is 0 ", CalculatorResult.Text); | ||
} | ||
|
||
[TestMethod] | ||
public void Addition() | ||
{ | ||
CalculatorSession.FindElementByName("One").Click(); | ||
CalculatorSession.FindElementByName("Plus").Click(); | ||
CalculatorSession.FindElementByName("Seven").Click(); | ||
CalculatorSession.FindElementByName("Equals").Click(); | ||
Assert.AreEqual("Display is 8 ", CalculatorResult.Text); | ||
} | ||
|
||
[TestMethod] | ||
public void Combination() | ||
{ | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Seven\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Multiply by\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Nine\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Plus\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"One\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Equals\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Divide by\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Eight\"]").Click(); | ||
CalculatorSession.FindElementByXPath("//Button[@Name=\"Equals\"]").Click(); | ||
Assert.AreEqual("Display is 8 ", CalculatorResult.Text); | ||
} | ||
|
||
[TestMethod] | ||
public void Division() | ||
{ | ||
CalculatorSession.FindElementByName("Eight").Click(); | ||
CalculatorSession.FindElementByName("Eight").Click(); | ||
CalculatorSession.FindElementByName("Divide by").Click(); | ||
CalculatorSession.FindElementByName("One").Click(); | ||
CalculatorSession.FindElementByName("One").Click(); | ||
CalculatorSession.FindElementByName("Equals").Click(); | ||
Assert.AreEqual("Display is 8 ", CalculatorResult.Text); | ||
} | ||
|
||
[TestMethod] | ||
public void Multiplication() | ||
{ | ||
CalculatorSession.FindElementByName("Nine").Click(); | ||
CalculatorSession.FindElementByName("Multiply by").Click(); | ||
CalculatorSession.FindElementByName("Nine").Click(); | ||
CalculatorSession.FindElementByName("Equals").Click(); | ||
Assert.AreEqual("Display is 81 ", CalculatorResult.Text); | ||
} | ||
|
||
[TestMethod] | ||
public void Subtraction() | ||
{ | ||
CalculatorSession.FindElementByName("Nine").Click(); | ||
CalculatorSession.FindElementByName("Minus").Click(); | ||
CalculatorSession.FindElementByName("One").Click(); | ||
CalculatorSession.FindElementByName("Equals").Click(); | ||
Assert.AreEqual("Display is 8 ", CalculatorResult.Text); | ||
} | ||
} | ||
} |
92 changes: 92 additions & 0 deletions
92
sample-code/examples/C#/CalculatorTest/CalculatorTest.csproj
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,92 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{B2C5ADFF-D6B5-48C1-BB8C-571BFD583D7F}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>CalculatorTest</RootNamespace> | ||
<AssemblyName>CalculatorTest</AssemblyName> | ||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath> | ||
<IsCodedUITest>False</IsCodedUITest> | ||
<TestProjectType>UnitTest</TestProjectType> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="WebDriver, Version=2.52.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
<HintPath>packages\Selenium.WebDriver.2.52.0\lib\net40\WebDriver.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
</ItemGroup> | ||
<Choose> | ||
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'"> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> | ||
</ItemGroup> | ||
</When> | ||
<Otherwise> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" /> | ||
</ItemGroup> | ||
</Otherwise> | ||
</Choose> | ||
<ItemGroup> | ||
<Compile Include="BasicScenarios.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="app.config" /> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<Choose> | ||
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'"> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> | ||
<Private>False</Private> | ||
</Reference> | ||
</ItemGroup> | ||
</When> | ||
</Choose> | ||
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" /> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
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 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 14 | ||
VisualStudioVersion = 14.0.23107.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalculatorTest", "CalculatorTest.csproj", "{B2C5ADFF-D6B5-48C1-BB8C-571BFD583D7F}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{B2C5ADFF-D6B5-48C1-BB8C-571BFD583D7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B2C5ADFF-D6B5-48C1-BB8C-571BFD583D7F}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B2C5ADFF-D6B5-48C1-BB8C-571BFD583D7F}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B2C5ADFF-D6B5-48C1-BB8C-571BFD583D7F}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
56 changes: 56 additions & 0 deletions
56
sample-code/examples/C#/CalculatorTest/Properties/AssemblyInfo.cs
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,56 @@ | ||
//****************************************************************************** | ||
// | ||
/* | ||
Copyright (c) 2016 Appium Committers. All rights reserved. | ||
Licensed to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
// | ||
//****************************************************************************** | ||
|
||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("CalculatorTest")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("CalculatorTest")] | ||
[assembly: AssemblyCopyright("Copyright © 2016 Microsoft Corporation")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("b2c5adff-d6b5-48c1-bb8c-571bfd583d7f")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
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,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
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,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Selenium.WebDriver" version="2.52.0" targetFramework="net45" /> | ||
</packages> |
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,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>CalculatorTest</groupId> | ||
<artifactId>CalculatorTest</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.seleniumhq.selenium</groupId> | ||
<artifactId>selenium-java</artifactId> | ||
<version>2.53.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.appium</groupId> | ||
<artifactId>java-client</artifactId> | ||
<version>3.4.1</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
Oops, something went wrong.