需要一个如何在serenity-js上单击按钮的示例

时间:2018-12-05 00:17:21

标签: serenity-js

我对serenity-js和Protractor真的很陌生。我遵循'https://github.com/serenity-js/seed-cucumber/tree/master/features'来熟悉serenity-js。有人可以给我一个按钮点击示例吗?

例如,点击“尝试新的语言”

1 个答案:

答案 0 :(得分:0)

一个很好的起点是遵循the official tutorial

要单击按钮,您需要:

// an Actor
const actor = Actor.named('Bob');

// a Target
const LandingPage = {
  Buy_Now = Target.the('"Buy Now" button').located(by.id('#buy-now'));
}

// to tell the actor to perform the Click
actor.attemptsTo(
  Click.on(LandingPage.Buy_Now),
);

希望这会有所帮助!

Jan