在 Windows powershell 中选择下拉列表中的 Web ui 测试自动化选项
抱歉,如果这个问题太简单了,但我对 Windows Powershell 相当陌生,我看过的所有下拉列表教程都向您展示了如何向用户显示下拉列表。
无论如何,我想做的是使用 Powershell 测试我的 Web 应用程序。我需要将下拉列表更改为特定选择,我可以使用值或索引来执行此操作,这对我来说并不重要。
感谢您提供的任何帮助。
Sorry if this is too easy of a question, but I'm fairly new to Windows Powershell and all of the tutorials I've looked at for dropdown lists show you how to display one to the user.
Anyway what I am trying to do is test my web application using Powershell. I need to change a dropdownlist to a specific choice, I can use the value or index to do this it doesn't matter to me.
Thanks for any help you can give.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实证明,最简单的方法是将控件的值设置为我想要的索引,如下所示:
这将选择列表框中的第一个值。如果您还不知道的话,我不知道如何判断该值是多少。或者根据文本进行选择,但我不需要。
Turns out the easiest way to do it was to just set the value of the control to the index I wanted like this:
This selects the first value in the list box. I have no idea how to tell what that value is if you don't already know it. Or select based off of text but I don't need that.
如何使用 WatiN 来自PowerShell?
How about using WatiN from PowerShell?