You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're currently setting up Appium to do automated UI testing on a MAUI app that uses VisualRunners.
You can reference and interact with UI elements with Appium by their attributes.
Ie, if your XAML file for the page had the following:
<ButtonText="Run All ►►"Command="{Binding RunEverythingCommand}"Style="{StaticResource RunButtonStyle}"
Grid.Column="1" />
You can use Appium to find an element with the text field "Run All ►►".
I would like to check the number of tests that have failed and the number that have succeeded through Appium, but those elements in the XAML page do not have any unique tags or identifiers.
Describe the solution you'd like
Add x:Name fields to the labels for the number of tests that have passed and failed.
Is your feature request related to a problem?
We're currently setting up Appium to do automated UI testing on a MAUI app that uses VisualRunners.
You can reference and interact with UI elements with Appium by their attributes.
Ie, if your XAML file for the page had the following:
You can use Appium to find an element with the text field "Run All ►►".
I would like to check the number of tests that have failed and the number that have succeeded through Appium, but those elements in the XAML page do not have any unique tags or identifiers.
Describe the solution you'd like
Add x:Name fields to the labels for the number of tests that have passed and failed.
Describe alternatives you've considered
Provide some kind of API to query the elements on the HomePage (as well as a way to query for the test results page) maybe.
Additional context
Let me know if there is already an existing & easier way to reference UI elements!
The text was updated successfully, but these errors were encountered: