Selenium Webdriver C#Sendkeys(Keys.Arrowdown)

时间:2012-06-03 03:35:46

标签: c# selenium webdriver

我正在尝试使用Selenium Webdriver / C#compile做一个箭头,但是当我尝试编译时出现此错误:

  'Keys'是'OpenQA.Selenium.Keys'和。之间的模糊参考   'System.Windows.Forms.Keys'(CS0104)

我的代码:

driver.FindElement(By.Id("ctl00_PlaceHolderMain_ctrlChangeBillingAddress_ctrlChangeBillingAddress_txtBillingAddress")).SendKeys(Keys.ArrowDown);
driver.FindElement(By.Id("ctl00_PlaceHolderMain_ctrlChangeBillingAddress_ctrlChangeBillingAddress_txtBillingAddress")).SendKeys(Keys.Enter);

6 个答案:

答案 0 :(得分:19)

如错误所述,两个不同的命名空间中有两种不同的Keys类型。

您需要通过编写OpenQA.Selenium.Keys明确限定类型。

答案 1 :(得分:1)

我的代码也发生了同样的事情。就像在我的注册中一样, 1.我有一个地址字段,从谷歌搜索中获取输入的地址,然后填写相应的字段,如:子urb,城市,邮政编码等。 2.有一个用于附加文件的按钮(例如从桌面浏览并选择要附加的任何图像或文档) 我收到错误“'密钥'是OpenQA.Selenium.Keys'System.Windows.Forms.Keys' (CS0104)之间含糊不清的引用 然后我意识到这意味着在两个不同的命名空间中有两种不同的Keys类型。因为地址选择,我的代码是:

driver.FindElement(By.XPath("//*[@id='PostalAddress_Address']")).SendKeys(Address); //Address to select from autofill and fill textboxes accordingly
        Thread.Sleep(500);
        driver.FindElement(By.XPath("//*[@id='PostalAddress_Address']")).SendKeys(Keys.ArrowDown);
        driver.FindElement(By.XPath("//*[@id='PostalAddress_Address']")).SendKeys(Keys.Enter);

对于Attach文件,代码为:

//Select and attach file from the computer
        driver.FindElement(By.XPath("//*[@id='graduate-education']/div[4]/label")).Click(); //Click Attach file button
        Thread.Sleep(500);
        //driver.FindElement(By.XPath("//*[@id='graduate-education']/div[4]/label")).SendKeys(AttachFile);
        SendKeys.SendWait(@"Complete File Path"); //Select the file from the location
        Thread.Sleep(500);
        SendKeys.SendWait(@"{Enter}"); 

添加的命名空间是:

    using OpenQA.Selenium; using System; using System.Threading; using System.Windows.Forms;

因为 - Keys类型无法识别它实际所属的位置,所以我不得不更改地址字段的代码并使用OpenQA.Selenium.keys.ArrowDown如下所示:

driver.FindElement(By.XPath("//*[@id='PostalAddress_Address']")).SendKeys(Address); //Address to select from autofill and fill textboxes accordingly
        Thread.Sleep(500);
        driver.FindElement(By.XPath("//*[@id='PostalAddress_Address']")).SendKeys(OpenQA.Selenium.Keys.ArrowDown);
        driver.FindElement(By.XPath("//*[@id='PostalAddress_Address']")).SendKeys(OpenQA.Selenium.Keys.Enter);

这对我有用,希望对你也一样

答案 2 :(得分:0)

我可以为您提供两种实现,但第一种只能在本地使用:

  1. Element.SendKeys(OpenQA.Selenium.Keys.ArrowUp);

  2. char c = '\uE013'; // ASCII code ArrowUp

    Element.SendKeys(Convert.ToString(c));

答案 3 :(得分:0)

我建议下一步:

    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();

答案 4 :(得分:0)

尝试

  

IWebDriver驱动程序=新的C​​hromeDriver();
  driver.Navigate()。GoToUrl(“ http:www.google.com”);
  IWebElement MyElement = driver.FindElement(By.Name(“ q”));
  MyElement.SendKeys(Keys.ArrowUp); MyElement.SendKeys(Keys.ArrowDown);

答案 5 :(得分:-1)

Actions 类 是 Selenium 提供的一种处理键盘和鼠标事件的能力。在 Selenium WebDriver 中,处理这些事件包括诸如拖放、使用控制键单击多个元素等操作。

    IWebDriver driver = new ChromeDriver();
    Actions action = new Actions(driver);
    action.SendKeys(Keys.UpArrow);
    action.Build().Perform();   // build and perform is used to complete that particular action. 
    action = new Actions(driver); // reinitialize 
    action.SendKeys(Keys.DownArrow);
    action.Build().Perform();