使用空格时 getSelectOptions 会引发错误
当下拉列表中存在空格作为选项时,getSelectOptions 失败。请参阅下面的代码。
assertEquals(" ,Half,3 Quarter,Full,1.5", join(selenium.getSelectOptions(
"//*[@id='xtolform_w[PRI][XTOL_BATH].fdeList[0].id']"), ','));
在我们的应用程序的另一个部分中,会再次看到这些选项,但没有第一个选择选项。这段代码,减去第一个选项,工作得很好。
有没有人知道的解决这个问题的方法?
When a space is present as an option in the drop-down, getSelectOptions fails. See the code below.
assertEquals(" ,Half,3 Quarter,Full,1.5", join(selenium.getSelectOptions(
"//*[@id='xtolform_w[PRI][XTOL_BATH].fdeList[0].id']"), ','));
There is another part in our app where these options are seen again, but without the first selection option. This same piece of code, minus the first option, works just fine.
Is there a way to handle this issue that anyone knows of?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否验证了 getSelectOptions() 函数在没有使用 assertEquals 的情况下调用的返回值?也包括空间吗?
did you verify returned values that getSelectOptions() function is called with out assertEquals? Does it include space also?