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

我正在使用 SearchBox 处理 Selenium
我必须在其中输入一些名称,然后按 Enter 进行搜索。

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

我试过这样的事情

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

但不起作用。

请帮忙。

注意:我收集了一些可能的方法来做到这一点。看到这里:press enter key in selenium

最佳答案

这可以通过 Keys Enter 来实现。

Java 中的示例,因为我不知道 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);

来自 Keys 枚举。

关于c# - 使用C#在Selenium RC中按Enter键,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10243153/

10-14 05:10