如何通过 SendKeys 发送特殊字符?
我正在尝试在 Selenium2 中填写表格。
一个输入有一个自动完成功能,我想关闭它,最好通过在搜索词后发送 esc 来关闭。 即类似 driver.FindElement(By.Id("InputWithAutocomplete")).SendKeys("SearchTerm/ESC");
我还想发送的密钥包括 del和 ctrl+ a。
是否有我可以使用的特殊字符列表?
我正在将 Selenium for .NET 2.8 与 FirefoxDriver 一起使用。
I'm trying to fill out a form in Selenium2.
One input has an autocomplete that I want to close, preferably by sending esc after the search term.
I.e. something like driver.FindElement(By.Id("InputWithAutocomplete")).SendKeys("SearchTerm/ESC");
Keys that I would also like to send include del and ctrl+ a.
Is there a list of special characters that I can use?
I'm using Selenium for .NET 2.8 with the FirefoxDriver.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: