I\'m trying to do do an arrow using Selenium Webdriver/C# compile but when I try to compile I get this error:
\'Keys\' is an ambiguous reference between \
I can provide you two realizations, but the first one works only locally:
Element.SendKeys(OpenQA.Selenium.Keys.ArrowUp);
char c = '\uE013'; // ASCII code ArrowUp
Element.SendKeys(Convert.ToString(c));