├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── release-nuget.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── icon.png └── src ├── Template.Maui.UITesting.csproj ├── Template.Maui.UITesting.sln └── content ├── MSTest-Appium-CSharp-TestClass ├── .template.config │ └── template.json └── UITest1.cs ├── MSTest-Appium-CSharp ├── .template.config │ ├── dotnetcli.host.json │ ├── ide.host.json │ ├── ide │ │ └── icon.ico │ └── template.json ├── UITests.Android │ ├── AppiumSetup.cs │ └── UITests.Android.csproj ├── UITests.Shared │ ├── AppiumServerHelper.cs │ ├── BaseTest.cs │ ├── UITest1.cs │ └── UITests.Shared.csproj ├── UITests.Windows │ ├── AppiumSetup.cs │ └── UITests.Windows.csproj ├── UITests.iOS │ ├── AppiumSetup.cs │ └── UITests.iOS.csproj └── UITests.macOS │ ├── AppiumSetup.cs │ └── UITests.macOS.csproj ├── NUnit-Appium-CSharp-TestClass ├── .template.config │ └── template.json └── UITest1.cs ├── NUnit-Appium-CSharp ├── .template.config │ ├── dotnetcli.host.json │ ├── ide.host.json │ ├── ide │ │ └── icon.ico │ └── template.json ├── UITests.Android │ ├── AppiumSetup.cs │ └── UITests.Android.csproj ├── UITests.Shared │ ├── AppiumServerHelper.cs │ ├── BaseTest.cs │ ├── UITest1.cs │ └── UITests.Shared.csproj ├── UITests.Windows │ ├── AppiumSetup.cs │ └── UITests.Windows.csproj ├── UITests.iOS │ ├── AppiumSetup.cs │ └── UITests.iOS.csproj └── UITests.macOS │ ├── AppiumSetup.cs │ └── UITests.macOS.csproj ├── xUnit-Appium-CSharp-TestClass ├── .template.config │ └── template.json └── UITest1.cs └── xUnit-Appium-CSharp ├── .template.config ├── dotnetcli.host.json ├── ide.host.json ├── ide │ └── icon.ico └── template.json ├── UITests.Android ├── AppiumSetup.cs └── UITests.Android.csproj ├── UITests.Shared ├── AppiumServerHelper.cs ├── BaseTest.cs ├── UITest1.cs └── UITests.Shared.csproj ├── UITests.Windows ├── AppiumSetup.cs └── UITests.Windows.csproj ├── UITests.iOS ├── AppiumSetup.cs └── UITests.iOS.csproj └── UITests.macOS ├── AppiumSetup.cs └── UITests.macOS.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: jfversluis -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/.github/workflows/release-nuget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/assets/icon.png -------------------------------------------------------------------------------- /src/Template.Maui.UITesting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/Template.Maui.UITesting.csproj -------------------------------------------------------------------------------- /src/Template.Maui.UITesting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/Template.Maui.UITesting.sln -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp-TestClass/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp-TestClass/.template.config/template.json -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp-TestClass/UITest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp-TestClass/UITest1.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/.template.config/ide/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/.template.config/ide/icon.ico -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/.template.config/template.json -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Android/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Android/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Android/UITests.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Android/UITests.Android.csproj -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Shared/AppiumServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Shared/AppiumServerHelper.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Shared/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Shared/BaseTest.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Shared/UITest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Shared/UITest1.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Shared/UITests.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Shared/UITests.Shared.csproj -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Windows/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Windows/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.Windows/UITests.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.Windows/UITests.Windows.csproj -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.iOS/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.iOS/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.iOS/UITests.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.iOS/UITests.iOS.csproj -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.macOS/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.macOS/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/MSTest-Appium-CSharp/UITests.macOS/UITests.macOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/MSTest-Appium-CSharp/UITests.macOS/UITests.macOS.csproj -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp-TestClass/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp-TestClass/.template.config/template.json -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp-TestClass/UITest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp-TestClass/UITest1.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/.template.config/ide/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/.template.config/ide/icon.ico -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/.template.config/template.json -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Android/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Android/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Android/UITests.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Android/UITests.Android.csproj -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Shared/AppiumServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Shared/AppiumServerHelper.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Shared/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Shared/BaseTest.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Shared/UITest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Shared/UITest1.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Shared/UITests.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Shared/UITests.Shared.csproj -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Windows/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Windows/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.Windows/UITests.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.Windows/UITests.Windows.csproj -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.iOS/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.iOS/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.iOS/UITests.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.iOS/UITests.iOS.csproj -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.macOS/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.macOS/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/NUnit-Appium-CSharp/UITests.macOS/UITests.macOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/NUnit-Appium-CSharp/UITests.macOS/UITests.macOS.csproj -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp-TestClass/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp-TestClass/.template.config/template.json -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp-TestClass/UITest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp-TestClass/UITest1.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/.template.config/dotnetcli.host.json -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/.template.config/ide.host.json -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/.template.config/ide/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/.template.config/ide/icon.ico -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/.template.config/template.json -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Android/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Android/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Android/UITests.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Android/UITests.Android.csproj -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Shared/AppiumServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Shared/AppiumServerHelper.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Shared/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Shared/BaseTest.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Shared/UITest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Shared/UITest1.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Shared/UITests.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Shared/UITests.Shared.csproj -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Windows/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Windows/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.Windows/UITests.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.Windows/UITests.Windows.csproj -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.iOS/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.iOS/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.iOS/UITests.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.iOS/UITests.iOS.csproj -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.macOS/AppiumSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.macOS/AppiumSetup.cs -------------------------------------------------------------------------------- /src/content/xUnit-Appium-CSharp/UITests.macOS/UITests.macOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfversluis/Template.Maui.UITesting/HEAD/src/content/xUnit-Appium-CSharp/UITests.macOS/UITests.macOS.csproj --------------------------------------------------------------------------------