jQuery 日期选择器和 selenium
我正在创建一个硒测试,在所有测试中我想模拟用户选择日期。问题是当月份发生变化时,可能的日期选择受到限制,使其非常脆弱。
这是我当前的代码:
sel.click("fromdate")
sel.click("//div[@id='dp-popup']/div[3]/table/tbody/tr[2]/td[6]")
sel.click("//div[@id='dp-popup']/div[3]/table/tbody/tr[3]/td[1]")
有没有办法解决这个问题,要么创建一个函数来确定要选择的正确单元格,要么我应该将值注入到字段中?
I am creating a selenium test and in all the tests I want to simulate the user choosing the date. The problem is when the month changes the possible date selections is limited making it very fragile.
This is my current code:
sel.click("fromdate")
sel.click("//div[@id='dp-popup']/div[3]/table/tbody/tr[2]/td[6]")
sel.click("//div[@id='dp-popup']/div[3]/table/tbody/tr[3]/td[1]")
Is there a way to get around this either creating a function that determines the correct cell to choose or if I should just inject the value into the field ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用 selenium 和 jQuery 日期选择器。我总是在 selenium 测试中使用 xpath 检查器来创建稳定的测试。
好吧,这是月份名称
//html/body/div[@id='ui-datepicker-div']/div/div/span[1]
的路径,这给出了年份 < code>//html/body/div[@id='ui-datepicker-div']/div/div/span[2] 这是//html/body/div[@id='ui-datepicker-div']/table/tbody/tr[**月份的周索引。你可以认为这是 datepicker**]/td 中的一行[**日期选择器的列索引。您可以认为这是一周中的一天**]
尝试使用 xpath 检查器来获取定位器。
希望这有帮助。
I'm using selenium and jQuery date picker. I'm always using xpath checker in selenium tests to create stable tests.
Well, this is the path of month name
//html/body/div[@id='ui-datepicker-div']/div/div/span[1]
and this gives the year//html/body/div[@id='ui-datepicker-div']/div/div/span[2]
and this is//html/body/div[@id='ui-datepicker-div']/table/tbody/tr[**week index of month.you can think this is a row in datepicker**]/td[**column index of a datepicker.you can think this is a day of a week**]
Try to use xpath checker to get locators.
Hope this helps.