forked from unoplatform/uno
-
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.
- Loading branch information
1 parent
4d6bf88
commit 7ca050b
Showing
22 changed files
with
216 additions
and
205 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
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
28 changes: 0 additions & 28 deletions
28
src/SolutionTemplate/Uno.ProjectTemplates.Dotnet/content/unoapp-uitest/Given_MainPage.cs
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
...lutionTemplate/Uno.ProjectTemplates.Dotnet/content/unoapp-uitest/UnoUITestsLibrary.csproj
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
File renamed without changes.
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,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using NUnit.Framework; | ||
using Uno.UITest.Helpers.Queries; | ||
using Query = System.Func<Uno.UITest.IAppQuery, Uno.UITest.IAppQuery>; | ||
|
||
namespace UnoUITestsLibrary | ||
{ | ||
public class Given_MainPage : TestBase | ||
{ | ||
[Test] | ||
public void When_SmokeTest() | ||
{ | ||
// Create a button with the `AutomationProperties.AutomationId="MyButton"` | ||
// then use the following code to search and tap the button | ||
// | ||
// Query MyButton = q => q.All().Marked("MyButton"); | ||
// App.WaitForElement(MyButton); | ||
// App.Tap(MyButton); | ||
|
||
// Take a screenshot and add it to the test results | ||
TakeScreenshot("After tapped"); | ||
} | ||
} | ||
} |
File renamed without changes.
Oops, something went wrong.