How can we automate wpf application because in my organization I am using the application which opens through the link which we paste in the browser we don't have EXE file for that so it's getting very tedious task to automate that using selenium, can anyone help if you have any idea
I want to automate application which opens through URL but it's not web application.
If there is a WPF application there should be an exe. May be your organization environment like when we paste URL on web it downloads the binaries(exe and dll's) at some location on your local machine and after that it is stating the WPF exe application. In that case if you are a developer then when we build a project then all DLL and exe files found in bin\release folder. you have to pickup these local files for automation instead of deployed environment.
I have also faced same issue in my organization I build the WPF application on my local machine and I got the exe and DLL on it.
After that I did automation through WinAppDriver on it using Visual Studio with Unit Test Project.
I'll give you sample application and steps to do the WPF application automation.
Visit below GitHub project to achieve WPF application automation. https://github.com/sandeepjadhav75502/AutomationScriptDesktopApp