-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a console-like environment where I can test finding (or interacting with) elements #915
Comments
You can use WinAppDriverUI Recorder to find control properties but there's no dedicated console for doing what you want to do. It is an interesting idea though. |
If you want to use a Shell like interface, maybe you could leverage existing Python support of WinAppDriver. |
On a secondary note, it should be possible to be done through Node.js as well. I tried but couldn't make it work. |
I suggest you to use appium-desktop. |
Thanks for the comments. Shame about the REPL (or lack thereof). |
The Appium Deksop didn't open on my Windows 10 machine, I tried downloading multiple versions. I hope it works for you. WAD UI Recorder worked fine on my machine though. |
For Appium Desktop, you may go back to "the server is running" to see which WinAppDriver you should install. @naeemakram . For you question, it's because this PR: appium/appium-windows-driver#60 |
I'm using an extension to my browser to test API calls as needed. RESTer on Firefox is mostly adequate. Do be warned: RESTer saves the results of all calls, so if you are using a root session and dump source, all of that data is now part of the source until you delete it. |
You could talk to the accessibiliyInsight guys and get them to implement a Xpath session, I've tried but they said it was not a priority, but if it get from you guys it would be carry more weight. And this is to replace inspect.exe in VisualStudio2020 |
Hi,
Is there a way to test commands like FindElementsByName. This is a simple example but if I want to find an element in a list which contains another specific element which contains some text, then it would be handy to test this code in a console-like environment. Rather than running my test until I get it right.
Anybody who is used to Xamarin UITesting will have access to a REPL (a console which can be used to interact with you app).
Something similar would be very handy here. I am new to WinAppDriver and am trying to extend existing ios/android Xamarin UITests tests to enable me to test Windows apps.
The text was updated successfully, but these errors were encountered: