jQuery 日期选择器和 selenium

发布于 2024-11-04 17:19:53 字数 320 浏览 0 评论 0原文

我正在创建一个硒测试,在所有测试中我想模拟用户选择日期。问题是当月份发生变化时,可能的日期选择受到限制,使其非常脆弱。

这是我当前的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纸伞微斜 2024-11-11 17:19:53

我正在使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文