Core Modules@serenity-js/coreActorsactorInTheSpotlightexternalactorInTheSpotlight CallableactorInTheSpotlight(): ActorRetrieves an actor who was last instantiated or retrieved using actorCalled. This function is particularly useful when automating Cucumber scenarios. This function is an alias for Serenity.theActorInTheSpotlight. Usage with Cucumberimport { actorCalled } from '@serenity-js/core';import { Given, When } from '@cucumber/cucumber';Given(/(.*?) is a registered user/, (name: string) => actorCalled(name).attemptsTo( // ... activities ))When(/(?:he|she|they) browse their recent orders/, () => actorInTheSpotlight().attemptsTo( // ... activities )) Learn moreengageactorCalledActorCastReturns Actor
Retrieves an actor who was last instantiated or retrieved using
actorCalled
.This function is particularly useful when automating Cucumber scenarios.
This function is an alias for
Serenity.theActorInTheSpotlight
.Usage with Cucumber
Learn more
engage
actorCalled
Actor
Cast