WatiN pressTab 不按 Tab
有没有人找到了在 Internet Explorer 中使用 watiN 按 Tab 的方法?
Has anyone found a means to press tab with watiN in Internet explorer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的意思是要按 Tab 键本身,还是只是单击看起来像 Tab 的 HTML 元素?对于后者,请对适当的元素(Div、Span 等)使用 Click 方法。否则,您可以尝试 SendKeys 而不是 PressTab。例如:
上面的示例将设置文本字段的焦点,然后关闭 Tab,将焦点放在搜索按钮上。
Do you mean you want to press the tab key itself, or just click on an HTML element that looks like a tab? For the latter use the Click method against the appropriate element (Div, Span etc). Otherwise you could try SendKeys instead of PressTab. e.g.:
The above example will set the focus the text field then tab off, putting focus on the search button.
我们遇到了同样的问题,我们解决它的重点是浏览器并使用 SendMessage (Win) 到特定的 hwnd。
we had the same problem, we resolve it focusin on the browser and using SendMessage (Win) to the specific hwnd.