我对serenity-js和Protractor真的很陌生。我遵循'https://github.com/serenity-js/seed-cucumber/tree/master/features'来熟悉serenity-js。有人可以给我一个按钮点击示例吗?
例如,点击“尝试新的语言”
答案 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