单击按钮不会将我定向到赛普拉斯中的预期URL

时间:2019-06-26 17:40:43

标签: cypress

问题

应用程序页面末尾有2个按钮:

  1. 后背-在柏树中可完美使用。它将用户返回到/transportation页面
  2. 查看并付款-不会将用户带到以下页面:/transportation/reservation/15802/payment(每笔订单都会更改15802)

它将我引向此处:test.liberty.edu/transportation/reservation/store.htm

我尝试过的

要点击“查看并付款”按钮:

cy.get('#trip-details-next').find('a').click()
cy.get('#trip-details-next').click()
cy.get('[data-top="2133.7999877929688"]').click()

要测试我是否到达了正确的网址:

cy.url().should('include', '/payment')

应用代码:

<a href="/transportation" class="button" id="trip-details-back" tabindex="11">« Back</a>
<a href="#" class="button right" id="trip-details-next" tabindex="10" onclick="ga('send', 'event', 'Button', 'click', 'Reserve Shuttle')">Review & Payment »</a> ==$0
  

CypressError:超时重试:预期'https://test.liberty.edu/transportation/reservation/store.htm'包含'/payment'

0 个答案:

没有答案