├── .gitattributes ├── .gitignore ├── A11y.csproj ├── A11y.sln ├── DriverManager.cs ├── DriversExecutables ├── AMD64 │ ├── MicrosoftWebDriver.exe │ └── chromedriver.exe └── X86 │ ├── MicrosoftWebDriver.exe │ └── chromedriver.exe ├── EdgeA11yTools.cs ├── EdgeStrategy.cs ├── ElementConverter.cs ├── Interop.UIAutomationCore.dll ├── Javascript.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── TestCaseResult.cs ├── TestData.cs ├── TestStrategy.cs ├── diff_runs.ps1 ├── license.txt ├── packages.config └── run.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/.gitignore -------------------------------------------------------------------------------- /A11y.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/A11y.csproj -------------------------------------------------------------------------------- /A11y.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/A11y.sln -------------------------------------------------------------------------------- /DriverManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/DriverManager.cs -------------------------------------------------------------------------------- /DriversExecutables/AMD64/MicrosoftWebDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/DriversExecutables/AMD64/MicrosoftWebDriver.exe -------------------------------------------------------------------------------- /DriversExecutables/AMD64/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/DriversExecutables/AMD64/chromedriver.exe -------------------------------------------------------------------------------- /DriversExecutables/X86/MicrosoftWebDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/DriversExecutables/X86/MicrosoftWebDriver.exe -------------------------------------------------------------------------------- /DriversExecutables/X86/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/DriversExecutables/X86/chromedriver.exe -------------------------------------------------------------------------------- /EdgeA11yTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/EdgeA11yTools.cs -------------------------------------------------------------------------------- /EdgeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/EdgeStrategy.cs -------------------------------------------------------------------------------- /ElementConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/ElementConverter.cs -------------------------------------------------------------------------------- /Interop.UIAutomationCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/Interop.UIAutomationCore.dll -------------------------------------------------------------------------------- /Javascript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/Javascript.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/README.md -------------------------------------------------------------------------------- /TestCaseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/TestCaseResult.cs -------------------------------------------------------------------------------- /TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/TestData.cs -------------------------------------------------------------------------------- /TestStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/TestStrategy.cs -------------------------------------------------------------------------------- /diff_runs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/diff_runs.ps1 -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/license.txt -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/packages.config -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/A11y/HEAD/run.ps1 --------------------------------------------------------------------------------