# screenplay.js.examples **Repository Path**: mirrors_cucumber/screenplay.js.examples ## Basic Information - **Project Name**: screenplay.js.examples - **Description**: Examples using @cucumber/screenplay - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-10-24 - **Last Updated**: 2026-04-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # @cucumber/screenplay [![test-javascript](https://github.com/cucumber/screenplay.js/actions/workflows/test-javascript.yaml/badge.svg)](https://github.com/cucumber/screenplay.js/actions/workflows/test-javascript.yaml) Cucumber Screenplay is a small library for [Cucumber.js](https://github.com/cucumber/cucumber-js/) that enables better acceptance tests (Gherkin Scenarios): * πŸš… Full-stack acceptance tests that run in **milliseconds** * πŸ”“ Encourages loosely coupled system components that are easier to test in isolation * πŸ§’ Incremental development - get **feedback** before you've implemented the full stack * 🧩 Assembles system components in several ways, so you can optimize for **speed** or **test coverage** * πŸ“— Readable scenarios that describe the **what** instead of the **how** * 🧰 Maintainable automation code See the [credits](#credits) section for details about prior work that inspired this library. When you use Cucumber Screenplay, your step definitions are typically one-liners: ```typescript When('{actor} logs in successfully', async function (actor: Actor) { await actor.attemptsTo(logIn(`${actor.name}@test.com`, 'valid-password')) }) ``` You can provide several implementations of `logIn` - one that interacts with the user interface, but *also* one that interacts with the API layer *underneath* the user interface via direct function calls or HTTP requests. This forces you to avoid UI language in your scenarios like "fill in field" and "click button", because it doesn't make sense to do that in a `logIn` implementation that isn't using the UI. Likewise, it forces you to avoid using HTTP language like "execute HTTP POST /login", because it doesn't make sense to do this in the `logIn` implementation that uses the UI. These constraints encourage you to write *readable* scenarios that describe *what users can do* rahter than *how your system is implemented*. Your scenarios become living documentation that can be understood by everyone on the team. ## Assemblies With Cucumber Screenplay you can evolve an acceptance test suite that you can run with multiple configurations, or *assemblies*. The [assembly diagrams](https://github.com/subsecondtdd/assembly-diagrams#readme) below illustrate how: * ![#FFB000](https://via.placeholder.com/15/FFB000/000000?text=+) Test components * ![#DC267F](https://via.placeholder.com/15/DC267F/000000?text=+) Infrastructure components * ![#648FFF](https://via.placeholder.com/15/648FFF/000000?text=+) Production components | DOM-HTTP-Domain | DOM-Domain | HTTP-Domain | Domain | | ---------------------------------------------- | ------------------------------------ | ---------------------------------------| ---------------------------- | | ![DOM-HTTP-Domain](images/dom-http-domain.svg) | ![DOM-Domain](images/dom-domain.svg) | ![HTTP-Domain](images/http-domain.svg) | ![Domain](images/domain.svg) | Watch Cucumber creator Aslak HellesΓΈy explain how assemblies can be used to build acceptance tests that run in milliseconds: [![Watch the video](https://img.youtube.com/vi/AJ7u_Z-TS-A/hq3.jpg)](https://www.youtube.com/watch?v=AJ7u_Z-TS-A) ## Installation First, add the library to your project: npm install @cucumber/screenplay --save-dev ## Usage This guide will walk you through the usage of the `@cucumber/screenplay` step by step. For a full example, please refer to the files in the `features` directory (which are also acceptance tests for this library). ### Actors The central concept in `@cucumber/screenplay` is the `Actor`. An actor object represents a user interacting with the system. In order to access actor objects from your step definitions, you first need to define an `{actor}` [parameter type](https://cucumber.io/docs/cucumber/cucumber-expressions/#parameter-types). Create a file called `features/support/World.ts` (if you haven't already got one) and add the following code: ```typescript import { defineParameterType, setWorldConstructor } from '@cucumber/cucumber' import { ActorWorld, ActorParameterType } from '@cucumber/screenplay' // Define an {actor} parameter type that creates Actor objects defineParameterType(ActorParameterType) // Define your own World class that extends from ActorWorld export default class World extends ActorWorld { } setWorldConstructor(World) ``` Your step definitions will now be passed `Actor` objects for `{actor}` parameters, for example: ```gherkin When Martha logs in ``` ```typescript When('{actor} logs in', async function (actor: Actor) { // The logIn() function is an Action await actor.attemptsTo(logIn(`${actor.name}@test.com`, 'valid-password')) }) ``` Keep reading to learn how to define *tasks*. ### Perfoming tasks Now that your step definitions can be passed `Actor` objects, we need to define *tasks* that the actor can perform to achieve a particular goal. A task is a function that returns another function that expects an `Actor` parameter. Add the following to `features/support/tasks/logIn.ts`: ```typescript type LogIn = (email: string, password: string) => Action export const logIn: LogIn = (email, password) => { return (actor: Actor) => { // Just a dummy implementation for now - we'll come back and flesh this out later return '42' } } ``` Back in the step definition we can now import this task: ```typescript import { logIn } from '../support/tasks/logIn' When('{actor} logs in', async function (actor: Actor) { const userId = await actor.attemptsTo(logIn(`${actor.name}@test.com`, 'valid-password')) }) ``` #### Tasks and Interactions The screenplay pattern encourages you to decompose complex tasks into multiple *interaction*: +--------+ | Action | +--------+ ^ | +---------+---------+ | | +-------+ +---+--+ +-----+-------+ | actor |------>| task |--------->| interaction | +-------+ +------+ 0..N +-------------+ In `@cucumber/screenplay`, both *tasks* and *interactions* are of type `Action`. The library does not make a distinction between them, it is up to you how you decompose tasks into interactions. See [shout.ts](features/support/tasks/dom/shout.ts) for an example of a task that delegates to two interactions. #### Tasks and Questions In addition to `Actor#attemptsTo` there is also an `Actor#ask` method. It has exactly the same signature and behaviour as `Actor#attemptsTo`. It often makes your code more readable if you use `Actor#attemptsTo` in your `When` step definitions that *modify* system state, and `Actor#ask` in `Then` step definitions that *query* system state. For example: ```typescript export type InboxMessages = () => Action export const inboxMessages: InboxMessages = (userId) => { return (actor: Actor) => { return ['hello', 'world'] } } ``` And in the step definition: ```typescript import { inboxMessages } from '../support/tasks/inboxMessages' Then('{actor} should have received the following messages:', function (actor: Actor, expectedMessages: DataTable) { const receivedMessages = actor.ask(inboxMessages()) assert.deepStrictEqual(receivedMessages, expectedMessages.rows.map(row => row[0])) }) ``` ### Using different task implementations It can often be useful to have multiple implementations of the same task. This allows you to build new functionality incrementally with fast feedback. For example, you might be working on a new requirement that allows users to log in. You can start by building just the server side domain logic before you implement any of the HTTP layer or UI around it and get quick feedback as you progress. Later, you can run the same scenarios again, but this time swapping out your tasks with implementations that make HTTP requests or interact with a DOM - without changing any code. If you look at the [shouty example included in this repo](./features), you will see that we organized our tasks in two directories: ``` features β”œβ”€β”€ hear_shout.feature └── support └── tasks β”œβ”€β”€ dom β”‚ β”œβ”€β”€ inboxMessages.ts β”‚ β”œβ”€β”€ moveTo.ts β”‚ └── shout.ts └── session β”œβ”€β”€ inboxMessages.ts β”œβ”€β”€ moveTo.ts └── shout.ts ``` If your `World` class extends from `ActorWorld`, it will automatically load tasks from the directory specified by the `tasks` [world parameter](https://github.com/cucumber/cucumber-js/blob/main/docs/support_files/world.md#world-parameters): ``` # Use the dom tasks cucumber-js --world-parameters '{ "tasks": "support/tasks/dom" }' # Use the session tasks cucumber-js --world-parameters '{ "tasks": "support/tasks/session" }' ``` Here is what the `World` looks like: ```typescript import { setWorldConstructor } from '@cucumber/cucumber' import { ActorWorld, defineActorParameterType, Action } from '@cucumber/screenplay' import { InboxMessages, Shout, StartSession } from './tasks/types' export default class World extends ActorWorld { // These tasks will be loaded automatically public startSession: StartSession public shout: Shout public inboxMessages: InboxMessages } setWorldConstructor(World) ``` If you're using this technique, you also need to adapt your step definitions to reference tasks from the *world* (`this`): ```typescript When('{actor} shouts {string}', async function (this: World, actor: Actor, message: string) { await actor.attemptsTo(this.shout(message)) }) ``` ### Sharing data between steps Your actors have the abililty to `remember` and `recall` data between steps. For example: ```typescript When('{actor} logs in', async function (actor: Actor) { const userId = await actor.attemptsTo(logIn(`${actor.name}@test.com`, 'valid-password')) actor.remember('userId', userId) }) Then('{actor} should be logged in', function (actor: Actor) { assert.ok(actor.recall('userId')) }) ``` You can also pass a function to `remember` to memoize a value: ```typescript function getSomething(actor: Actor) { actor.recall('something', () => ({ foo: 'bar' })) } // The same object is returned every time assert.strictEqual(getSomething(actor), getSomething(actor)) ``` **Note:** the data remembered is scoped by `Actor`, so you cannot access data remembered by one actor from another one. You can have multiple actors storing different data with the same key. Every `Actor` is discarded at the end of each scenario, so you won't be able to `recall` anything from previous scenarios. ### Accessing the world from actors If your tasks need to access data in the `world`, they can do so via the `Actor#world` property. If you're doing this you should also declare the generic type of the actor in the task implementation: ```typescript export const moveTo: MoveTo = (coordinate) => { // We're declaring the World type of the actor so that we can access its members return async (actor: Actor) => { actor.world.shouty.moveTo(actor.name, coordinate) } } ``` ### Asynchronous behaviour and eventual consistency In a distributed system it may take some time before the outcome of an action propagates around the whole system. For example, in a chat application, when one user sends a message, it may take a few milliseconds before the other users receive the message, because it travels through a network, even when it's all on your machine. In cases like this you can use the `eventually` function to periodically check for a specific condition: ```typescript Then('{actor} hears {actor}’s message', async function (this: World, listener: Actor, shouter: Actor) { const shouterLastMessage = shouter.recall('lastMessage') await eventually(() => { const listenerMessages = listener.ask(this.inboxMessages()) assert.deepStrictEqual(listenerMessages, [shouterLastMessage]) }) }) ``` The `eventually` function accepts a single argument - a zero argument `condition` function. If the `condition` function throws an error, it will be called again at a regular `interval` until it passes without throwing an exception. If it doesn't pass or finish within a `timeout` period, a timeout error is thrown. The default `interval` is `50ms` and the default `timeout` is `1000ms`. This can be overridden with a second `{ interval: number, timeout: number }` argument after the `condition`. ## Advanced Configuration Below are some guidelines for more advanced configuration. ### Using Promises The default type of an `Action` is `void`. If your system is asynchronous (i.e. uses `async` functions that return a `Promise`), you can use the `PromiseAction` type instead of `Action`. ### Using an explicit ActorLookup If you cannot extend `ActorWorld`, you can add an `ActorLookup` field to your existing world class like so: ```typescript import { ActorLookup } from '@cucumber/screenplay' class World { private readonly actorLookUp = new ActorLookup() public findOrCreateActor(actorName: string): Actor { return this.actorLookUp.findOrCreateActor(this, actorName) } } ``` ### Overriding ActorParameterType options The `defineParameterType(ActorParameterType)` function call defines a parameter type named `{actor}` by default, and it uses the RegExp `/[A-Z][a-z]+/` (a capitailsed string). If you want to use a different name or regexp, you can override these defaults: ```typescript defineParameterType({ ...ActorParameterType, name: 'acteur' }) defineParameterType({ ...ActorParameterType, regexp: /Marcel|Bernadette|Hubert/ }) defineParameterType({ ...ActorParameterType, name: 'acteur', regexp: /Marcel|Bernadette|Hubert/ }) ``` ## Design recommendations When you're working with `@cucumber/screenplay` and testing against multiple layers, we recommend you use only two task implementations: * `dom` for tasks that use the DOM * `session` for tasks that use a `Session` A `Session` represents a user (actor) having an interactive session with your system. A `Session` will typically be used in two places of your code: * From your `session` tasks * From your UI code (React/Vue components etc) `Session` is an interface that is specific to your implementation that you should implement yourself. Your UI code will use it to interact with the server. This separation of concerns prevents network implementation details to bleed into the UI code. You'll typically have two implementations of your `Session` interface - `HttpSession` and `DomainSession`. The `HttpSession` is where you encapsulate all of the `fetch`, `WebSocket` and `EventSource` logic. This is the class your UI will use in production. You will also use it in tests. The `DomainSession` is an implementation that talks directly to the server side domain layer with direct function calls (without any networking). This implementation will only be used in tests. By organising your code this way, you have four ways you can assemble your system when you run your Cucumber Scenarios. * `session` tasks using `DomainSession` (fastest tests, domain layer coverage) * `session` tasks using `HttpSession` (slower tests, http + domain layer coverage) * `dom` tasks using `DomainSession` (slower tests, UI + domain layer coverage) * `dom` tasks using `HttpSession` (slowest tests, UI + http + domain layer coverage) In the example we use [world parameters](https://github.com/cucumber/cucumber-js/blob/main/docs/support_files/world.md#world-parameters) to control how to interact with the system and how the system is assembled. ## Credits This library is inspired by the *Screenplay Pattern*. This list is a chronological order of events, implementations and writings related to the evolution of the pattern. * 2007: [In praise of abstraction](https://developertesting.com/archives/month200710/20071013-In%20Praise%20of%20Abstraction.html) - talk by Kevin Lawrence. * 2007: Antony Marcano [demonstrates the Journey Pattern](http://www.russmiles.com/essais/on-the-origins-of-the-journey-pattern-in-testing) at the Agile Alliance Functional Test Tools workshop. * 2009: Antony Marcano and Andy Palmer showed Aslak HellesΓΈy the pattern at Agile 2009 in Chicago. * 2012: [Screenplay4j](https://bitbucket-archive.softwareheritage.org/projects/te/testingreflections/screenplay4j.html) - the first public implementation by Antony Marcano and Andy Palmer. * 2012: [User Centred Scenarios: Describing capabilities, not solutions](https://skillsmatter.com/skillscasts/3141-user-centred-scenarios-describing-capabilities-not-solutions) - talk by Andy Palmer and Antony Marcano where "millisecond acceptance" tests are described towards the end. * 2015: John Ferguson Smart and Jan Molak, along with Andy and Antony, added native support for the Screenplay pattern to [Serenity BDD](http://serenity-bdd.info/) for Web and API testing, popularising the pattern in the Java testing community. * 2016: [Beyond Page Objects: Next Generation Test Automation with Serenity and the Screenplay Pattern](https://www.infoq.com/articles/Beyond-Page-Objects-Test-Automation-Serenity-Screenplay/) by Andy Palmer, Antony Marcano, John Ferguson Smart and Jan Molak. * 2016: [Screenplays and Journeys, Not Page Objects](https://testerstories.com/2016/06/screenplays-and-journeys-not-page-objects/) - blog post by Jeff Nyman * 2016: [Screenplay Pattern](https://serenity-js.org/handbook/thinking-in-serenity-js/screenplay-pattern.html) as described by Jan Molak. * 2016: [Serenity/JS](https://serenity-js.org) - the original JavaScript/TypeScript implementation of the Screenplay Pattern by Jan Molak. * 2017: Nat Pryce explored using the Screenplay Pattern to write tests that run in milliseconds - https://speakerdeck.com/npryce/having-our-cake-and-eating-it-1 * 2019: [ScreenPy](https://pypi.org/project/screenpy/) - a Python implementation of the Screenplay pattern inspired by the Serenity BDD implementation * 2020: [Boa Constrictor](https://automationpanda.com/2020/10/16/introducing-boa-constrictor-the-net-screenplay-pattern/) - a .NET implementation of Screenplay by Andrew Knight, inspired by Serenity BDD and Serenity/JS * 2020: [Understanding Screenplay](https://cucumber.io/blog/bdd/understanding-screenplay-(part-1)/) - blog series by Matt Wynne. * 2021: [BDD in Action, 2nd Edition](https://www.manning.com/books/bdd-in-action-second-edition) (by John Ferguson Smart with Jan Molak) includes a full chapter and many examples of the Screenplay pattern in Java and Typescript