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 would suggest to do next:
IWebElement element = driver.FindElement(By.Id("ctl00_PlaceHolderMain_ctrlChangeBillingAddress_ctrlChangeBillingAddress_txtBillingAddress"));
OpenQA.Selenium.Interactions.Actions action = new OpenQA.Selenium.Interactions.Actions(driver);
action.SendKeys(element, Keys.Down).SendKeys(element, Keys.Enter).Build().Perform();