8

如何使用 C# 使用 Selenium RC 按 Enter?

我正在SearchBox使用 using Selenium。我必须在其中输入一些名称,并且必须按下Enter才能进行搜索。

没有Submit按钮。所以,我必须使用Enter.

我尝试过这样的事情

selenium.KeyPress("quicksearchtextcriteria", "13");

但不起作用。

请帮忙。

注意:我收集了一些可能的方法来做到这一点。见这里:在硒中按回车键

4

7 回答 7

8

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.

于 2012-04-20T11:00:22.890 回答
4

尝试这个:

导入 org.openqa.selenium.Keys

WebElement.sendKeys(Keys.RETURN)

参考:

在 Selenium 中键入 Enter/Return 键

http://asynchrony.blogspot.com/2008/11/enter-key-press-in-selenium.html

希望这可以帮助。

于 2012-04-24T05:36:40.050 回答
3

这是用 C# 完成的:

webElement.SendKeys(Keys.Return);

于 2015-09-29T18:21:05.053 回答
2

我相信您也可以使用“提交”方法。(虽然我使用 Selenium 2,所以我猜这在 Selenium RC 中可能是不可能的?如果是这样,对不起)。

//First you need to find the searchBox and fill it, once doing so call
searchBox.Submit();
于 2012-04-22T23:47:35.947 回答
1

尝试这个:

selenium.KeyPressNative("13");
于 2012-04-20T09:16:11.447 回答
0

您可以使用 clickAt("locator",""); 如果按键不工作。它肯定会起作用。

于 2012-04-23T10:00:18.053 回答
0

用这个

selenium.keyDown("locator of element", "\\13");
于 2012-04-20T10:51:21.087 回答