本文整理汇总了TypeScript中integration-test/tests/citizen/claim/steps/claim.ClaimSteps.optIntoNewFeatures方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ClaimSteps.optIntoNewFeatures方法的具体用法?TypeScript ClaimSteps.optIntoNewFeatures怎么用?TypeScript ClaimSteps.optIntoNewFeatures使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类integration-test/tests/citizen/claim/steps/claim.ClaimSteps
的用法示例。
在下文中一共展示了ClaimSteps.optIntoNewFeatures方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Scenario
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')
})
示例2: Scenario
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')
})