UNPKG

@kronoslive/codeceptjs

Version:

Supercharged End 2 End Testing Framework for NodeJS

301 lines (213 loc) 10 kB
--- permalink: /puppeteer title: Testing with Puppeteer --- # Testing with Puppeteer Among all Selenium alternatives the most interesting emerging ones are tools developed around Google Chrome [DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/). And the most prominent one is [Puppeteer](https://github.com/GoogleChrome/puppeteer). It operates over Google Chrome directly without requiring additional tools like ChromeDriver. So tests setup with Puppeteer can be started with npm install only. If you want get faster and simpler to setup tests, Puppeteer would be your choice. CodeceptJS uses Puppeteer to improve end to end testing experience. No need to learn the syntax of a new tool, all drivers in CodeceptJS share the same API. Take a look at a sample test: ```js I.amOnPage('https://github.com'); I.click('Sign in', '//html/body/div[1]/header'); I.see('Sign in to GitHub', 'h1'); I.fillField('Username or email address', 'something@totest.com'); I.fillField('Password', '123456'); I.click('Sign in'); I.see('Incorrect username or password.', '.flash-error'); ``` It's readable and simple and works using Puppeteer API! ## Setup To start you need CodeceptJS with Puppeteer packages installed ```bash npm install codeceptjs puppeteer --save ``` Or see [alternative installation options](http://codecept.io/installation/) > If you already have CodeceptJS project, just install `puppeteer` package and enable a helper it in config. And a basic project initialized ```sh npx codeceptjs init ``` You will be asked for a Helper to use, you should select Puppeteer and provide url of a website you are testing. > Puppeteer can also work with Firefox. [Learn how to set it up](/helpers/Puppeteer-firefox) ## Configuring Make sure `Puppeteer` helper is enabled in `codecept.conf.js` config: ```js { // .. helpers: { Puppeteer: { url: "http://localhost", show: true } } // .. } ``` > Turn off the `show` option if you want to run test in headless mode. Puppeteer uses different strategies to detect if a page is loaded. In configuration use `waitForNavigation` option for that: By default it is set to `domcontentloaded` which waits for `DOMContentLoaded` event being fired. However, for Single Page Applications it's more useful to set this value to `networkidle0` which waits for all network connections to be finished. ```js helpers: { Puppeteer: { url: "http://localhost", show: true, waitForNavigation: "networkidle0" } } ``` When a test runs faster than application it is recommended to increase `waitForAction` config value. It will wait for a small amount of time (100ms) by default after each user action is taken. > ▶ More options are listed in [helper reference](http://codecept.io/helpers/Puppeteer/). ## Writing Tests CodeceptJS test should be created with `gt` command: ```sh npx codeceptjs gt ``` As an example we will use `ToDoMvc` app for testing. ### Actions Tests consist with a scenario of user's action taken on a page. The most widely used ones are: * `amOnPage` - to open a webpage (accepts relative or absolute url) * `click` - to locate a button or link and click on it * `fillField` - to enter a text inside a field * `selectOption`, `checkOption` - to interact with a form * `wait*` to wait for some parts of page to be fully rendered (important for testing SPA) * `grab*` to get values from page sources * `see`, `dontSee` - to check for a text on a page * `seeElement`, `dontSeeElement` - to check for elements on a page > ℹ All actions are listed in [Puppeteer helper reference](http://codecept.io/helpers/Puppeteer/).* All actions which interact with elements **support CSS and XPath locators**. Actions like `click` or `fillField` by locate elements by their name or value on a page: ```js // search for link or button I.click('Login'); // locate field by its label I.fillField('Name', 'Miles'); // we can use input name I.fillField('user[email]','miles@davis.com'); ``` You can also specify the exact locator type with strict locators: ```js I.click({css: 'button.red'}); I.fillField({name: 'user[email]'},'miles@davis.com'); I.seeElement({xpath: '//body/header'}); ``` ### Interactive Pause It's easy to start writing a test if you use [interactive pause](/basics#debug). Just open a web page and pause execution. ```js Feature('Sample Test'); Scenario('open my website', ({ I }) => { I.amOnPage('http://todomvc.com/examples/react/'); pause(); }); ``` This is just enough to run a test, open a browser, and think what to do next to write a test case. When you execute such test with `codeceptjs run` command you may see the browser is started ``` npx codeceptjs run --steps ``` After a page is opened a full control of a browser is given to a terminal. Type in different commands such as `click`, `see`, `fillField` to write the test. A successful commands will be saved to `./output/cli-history` file and can be copied into a test. A complete ToDo-MVC test may look like: ```js Feature('ToDo'); Scenario('create todo item', ({ I }) => { I.amOnPage('http://todomvc.com/examples/react/'); I.dontSeeElement('.todo-count'); I.fillField('What needs to be done?', 'Write a guide'); I.pressKey('Enter'); I.see('Write a guide', '.todo-list'); I.see('1 item left', '.todo-count'); }); ``` ### Grabbers If you need to get element's value inside a test you can use `grab*` methods. They should be used with `await` operator inside `async` function: ```js const assert = require('assert'); Scenario('get value of current tasks', async ({ I }) => { I.createTodo('do 1'); I.createTodo('do 2'); let numTodos = await I.grabTextFrom('.todo-count strong'); assert.equal(2, numTodos); }); ``` ### Within In case some actions should be taken inside one element (a container or modal window or iframe) you can use `within` block to narrow the scope. Please take a note that you can't use within inside another within in Puppeteer helper: ```js within('.todoapp', () => { I.createTodo('my new item'); I.see('1 item left', '.todo-count'); I.click('.todo-list input.toggle'); }); I.see('0 items left', '.todo-count'); ``` > [▶ Learn more about basic commands](/basics#writing-tests) CodeceptJS allows you to implement custom actions like `I.createTodo` or use **PageObjects**. Learn how to improve your tests in [PageObjects](http://codecept.io/pageobjects/) guide. > [▶ Demo project is available on GitHub](https://github.com/DavertMik/codeceptjs-todomvc-puppeteer) ## Mocking Requests Web application sends various requests to local services (Rest API, GraphQL) or to 3rd party services (CDNS, Google Analytics, etc). When you run tests with Puppeteer you can control those requests by mocking them. For instance, you can speed up your tests by blocking trackers, Google Analytics, and other services you don't control. Also you can replace real request with a one explicitly defined. This is useful when you want to isolate application testing from a backend. For instance, if you don't want to save data to database, and you know the request which performs save, you can mock the request, so application will treat this as valid response, but no data will be actually saved. To mock requests enable additional helper [MockRequest](/helpers/MockRequest) (which is based on Polly.js). ```js helpers: { Puppeteer: { // regular Puppeteer config here }, MockRequest: {} } ``` And install additional packages: ``` npm i @pollyjs/core @pollyjs/adapter-puppeteer --save-dev ``` After an installation function `mockRequest` will be added to `I` object. You can use it to explicitly define which requests to block and which response they should return instead: ```js // block all Google Analytics calls I.mockRequest('/google-analytics/*path', 200); // return an empty successful response I.mockRequest('GET', '/api/users', 200); // block post requests to /api/users and return predefined object I.mockRequest('POST', '/api/users', { user: 'davert' }); // return error request with body I.mockRequest('GET', '/api/users/1', 404, { error: 'User not found' }); ``` > See [`mockRequest` API](/helpers/MockRequest#mockrequest) To see `mockRequest` method in intellisense auto completion don't forget to run `codeceptjs def` command: ``` npx codeceptjs def ``` Mocking rules will be kept while a test is running. To stop mocking use `I.stopMocking()` command ## Accessing Puppeteer API To get Puppeteer API inside a test use [`I.usePupepteerTo`](/helpers/Puppeteer/#usepuppeteerto) method with a callback. To keep test readable provide a description of a callback inside the first parameter. ```js I.usePuppeteerTo('emulate offline mode', async ({ page, browser }) => { await page.setOfflineMode(true); }); ``` > Puppeteer commands are asynchronous so a callback function must be async. A Puppeteer helper is passed as argument for callback, so you can combine Puppeteer API with CodeceptJS API: ```js I.usePuppeteerTo('emulate offline mode', async (Puppeteer) => { // access internal objects browser, page, context of helper await Puppeteer.page.setOfflineMode(true); // call a method of helper, await is required here await Puppeteer.click('Reload'); }); ``` ## Extending Helper To create custom `I.*` commands using Puppeteer API you need to create a custom helper. Start with creating an `MyPuppeteer` helper using `generate:helper` or `gh` command: ```sh npx codeceptjs gh ``` Then inside a Helper you can access `Puppeteer` helper of CodeceptJS. Let's say you want to create `I.renderPageToPdf` action. In this case you need to call `pdf` method of `page` object ```js // inside a MyPuppeteer helper async renderPageToPdf() { const page = this.helpers['Puppeteer'].page; await page.emulateMedia('screen'); return page.pdf({path: 'page.pdf'}); } ``` The same way you can also access `browser` object to implement more actions or handle events. > [▶ Learn more about Helpers](http://codecept.io/helpers/)