I need to press Ctrl+A keys using Selenium WebDriver. Is there any way to do it?
I checked the Selenium libraries and found that Selenium allow
This is what worked for me using C# (VS2015) with Selenium:
new Actions(driver).SendKeys(Keys.Control+"A").Perform();
You can add as many keys as wanted using (+) inbetween.