如何使用 C# 使用 Selenium RC 按 Enter?
我正在SearchBox
使用 using Selenium
。我必须在其中输入一些名称,并且必须按下Enter才能进行搜索。
没有Submit
按钮。所以,我必须使用Enter.
我尝试过这样的事情
selenium.KeyPress("quicksearchtextcriteria", "13");
但不起作用。
请帮忙。
注意:我收集了一些可能的方法来做到这一点。见这里:在硒中按回车键
This can be achieved by Keys
, and Enter
.
Example in Java as I don't know C#:
import org.openqa.selenium.Keys;
//...
// this sends an Enter to the element
selenium.type("locator", Keys.ENTER);
// or even this - this sends the "Any text" and then confirms it with Enter
selenium.type("locator", "Any text" + Keys.ENTER);
From the Keys
enum.
尝试这个:
导入 org.openqa.selenium.Keys
WebElement.sendKeys(Keys.RETURN)
参考:
http://asynchrony.blogspot.com/2008/11/enter-key-press-in-selenium.html
希望这可以帮助。
这是用 C# 完成的:
webElement.SendKeys(Keys.Return);
我相信您也可以使用“提交”方法。(虽然我使用 Selenium 2,所以我猜这在 Selenium RC 中可能是不可能的?如果是这样,对不起)。
//First you need to find the searchBox and fill it, once doing so call
searchBox.Submit();
尝试这个:
selenium.KeyPressNative("13");
您可以使用 clickAt("locator",""); 如果按键不工作。它肯定会起作用。
用这个
selenium.keyDown("locator of element", "\\13");