本文整理汇总了TypeScript中integration-test/tests/citizen/claim/steps/interest.InterestSteps类的典型用法代码示例。如果您正苦于以下问题:TypeScript InterestSteps类的具体用法?TypeScript InterestSteps怎么用?TypeScript InterestSteps使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了InterestSteps类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: async
Scenario('I can prepare a claim with a manually entered interest amount and a daily amount added @citizen', async (I: I) => {
const email: string = await I.createCitizenUser()
userSteps.login(email)
claimSteps.completeEligibility()
claimSteps.optIntoNewFeatures()
userSteps.selectClaimAmount()
claimSteps.enterClaimAmount(10, 20.50, 50)
I.see('£80.50')
claimSteps.claimantTotalAmountPageRead()
I.see('Do you want to claim interest?')
interestSteps.enterBreakdownInterestAmountAndDailyAmount()
I.see('Total amount you’re claiming')
interestSteps.skipClaimantInterestTotalPage()
I.see('Prepare your claim')
})
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:16,代码来源:enterDetails_test.ts
示例2: async
Scenario('I can see the Claim amount page calculates properly and shows the correct fees table @citizen', async (I: I) => {
const email: string = await I.createCitizenUser()
userSteps.login(email)
claimSteps.completeEligibility()
claimSteps.optIntoNewFeatures()
userSteps.selectClaimAmount()
I.see('Claim amount')
claimantClaimAmountPage.enterAmount(11, 20.50, 32.25)
I.see('£63.75')
I.click('Save and continue')
I.see('Do you want to claim interest?')
interestSteps.skipClaimInterest()
I.see('Total amount you’re claiming')
I.click('summary')
I.see('Claim amount Claim fee Hearing fee')
I.see('£0.01 to £300 £25 £25')
I.see('£300.01 to £500 £35 £55')
I.see('£500.01 to £1,000 £60 £80')
I.see('£1,000.01 to £1,500 £70 £115')
I.see('£1,500.01 to £3,000 £105 £170')
I.see('£3,000.01 to £5,000 £185 £335')
I.see('£5,000.01 to £10,000 £410 £335')
})
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:24,代码来源:fees_test.ts
注:本文中的integration-test/tests/citizen/claim/steps/interest.InterestSteps类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论