kfrajtak / WinAppDriver

Full open-source Selenium driver for WinForms applications using Windows Automation
MIT License
40 stars 9 forks source link

Which windows systems are supported for this project? #14

Closed yangyechi closed 4 years ago

yangyechi commented 4 years ago

I noticed that Microsoft/WinAppDriver only supports Windows 10 (Home and Pro) and Windows Server 2016. So does this project support other systems? In addition, why does Microsoft/WinAppDriver only support Windows 10 (Home and Pro) and Windows Server 2016? Does it not depend on Microsoft UIAutomation ? Please tell me, Thanks bro.

kfrajtak commented 4 years ago

This project relies on MS UI Automation which is a part of the Windows Accessibility API.

The documentation mentions support for various platforms

UI Automation is supported on the following operating systems: Windows XP, Windows Server 2003, Windows Server 2003 R2, Windows Vista, Windows 7, Windows 10, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, and Windows Server 2019.

I can't confirm it will work on those platforms since I only have Win 10 Enterprise on my machine. All the required libs are part of the project, feel free to give a try on a platform you choose.

yangyechi commented 4 years ago

This project relies on MS UI Automation which is a part of the Windows Accessibility API.

The documentation mentions support for various platforms

UI Automation is supported on the following operating systems: Windows XP, Windows Server 2003, Windows Server 2003 R2, Windows Vista, Windows 7, Windows 10, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, and Windows Server 2019.

I can't confirm it will work on those platforms since I only have Win 10 Enterprise on my machine. All the required libs are part of the project, feel free to give a try on a platform you choose.

OK, Thank you very much for answering my question.