IE 中动态页面的 Selen 测试
Selenium html 脚本测试包含多个相关下拉菜单的页面。与从一个菜单中选择某个选项相关的更新相应地包含下一个菜单。例如,从一个菜单中选择“州”,下一个菜单将包含所选州城市的名称。 脚本在 Firefox 中执行时工作正常,但在 IE 中执行时失败。脚本从第一个下拉菜单中选择选项后,下一个菜单的内容保持不变。因此,脚本无法找到所需的选项并且失败。 有没有办法强制从脚本更新菜单? 谢谢!
The Selenium html-script tests one page containing several related drop-down menus. Related like selecting some option from one menu updates contain of the next menu correspondingly. For example, select State from one menu and next menu will contain names of that selected state cities.
Script works fine when executed in Firefox, but it fails when executed in IE. After script selects option from first drop-down menu, the content of the next menu remains unchanged. Therefore, script unable to find required option and it fails.
Is there a way to force that menu update from the script?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果功能手动运行,请尝试使用
fireEven Blur
或submit
所选字段。If functionality works manually then try with
fireEven blur
orsubmit
selected field.