gpt4 book ai didi

c# - 使用 C# 在 Selenium RC 中按 Enter 键

转载 作者:太空狗 更新时间:2023-10-29 22:16:47 28 4
gpt4 key购买 nike

如何使用 C# 使用 Selenium RC 按回车键?

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

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

我试过这样的东西

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

但不起作用。

请帮助。

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

最佳答案

这可以通过 Keys 来实现, 和 Enter .

我不懂 C# 的 Java 示例:

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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com