| permalink | /pageobjects |
|---|---|
| title | Page Objects |
The UI of your web application has interaction areas which can be shared across different tests. To avoid code duplication you can put common locators and methods in one place.
All objects described here are injected via Dependency Injection, in a similar way AngularJS does. If you want an object to be injected in a scenario by its name, you can add it to the configuration:
include: {I: "./custom_steps.js",Smth: "./pages/Smth.js",loginPage: "./pages/Login.js",signinFragment: "./fragments/Signin.js"}These objects can now be retrieved by the name specified in the configuration.
Required objects can be obtained via parameters in tests or via a global inject() call.
// globally inject objects by nameconst{ I, myPage, mySteps }=inject();// inject objects for a test by nameScenario('sample test',(I,myPage,mySteps)=>{// ...})During initialization you were asked to create a custom steps file. If you accepted this option, you are now able to use the custom_steps.js file to extend I. See how the login method can be added to I:
module.exports=function(){returnactor({login: function(email,password){this.fillField('Email',email);this.fillField('Password',password);this.click('Submit');}});}ℹ Instead of
Iyou should usethisin the current context.
If an application has different pages (login, admin, etc) you should use a page object. CodeceptJS can generate a template for it with the following command:
npx codeceptjs gpoThis will create a sample template for a page object and include it in the codecept.json config file.
const{ I, otherPage }=inject();module.exports={// insert your locators and methods here}As you see, the I object is available in scope, so you can use it just like you would do in tests.
A general page object for a login page could look like this:
// enable I and another page objectconst{ I, registerPage }=inject();module.exports={// setting locatorsfields: {email: '#user_basic_email',password: '#user_basic_password'},submitButton: {css: '#new_user_basic input[type=submit]'},// introducing methodssendForm(email,password){I.fillField(this.fields.email,email);I.fillField(this.fields.password,password);I.click(this.submitButton);},register(email,password){// use another page object inside current oneregisterPage.registerUser({ email, password });}}You can include this pageobject in a test by its name (defined in codecept.json). If you created a loginPage object,
it should be added to the list of arguments to be included in the test:
Scenario('login',(I,loginPage)=>{loginPage.sendForm('john@doe.com','123456');I.see('Hello, John');});Also, you can use async/await inside a Page Object:
const{ I }=inject();module.exports={// setting locatorscontainer: "//div[@class = 'numbers']",mainItem: {number: ".//div[contains(@class, 'numbers__main-number')]",title: ".//div[contains(@class, 'numbers__main-title-block')]"},// introducing methodsasyncopenMainArticle(){I.waitForVisible(this.container)let_this=thislettitle;awaitwithin(this.container,async()=>{title=awaitI.grabTextFrom(_this.mainItem.number);letsubtitle=awaitI.grabTextFrom(_this.mainItem.title);title=title+" "+subtitle.charAt(0).toLowerCase()+subtitle.slice(1);awaitI.click(_this.mainItem.title)})returntitle;}}and use them in your tests:
Scenario('login2',async(I,loginPage,basePage)=>{lettitle=awaitmainPage.openMainArticle()basePage.pageShouldBeOpened(title)});Page Objects can be be functions, arrays or classes. When declared as classes you can easily extend them in other page objects.
Here is an example of declaring page object as a class:
const{ expect }=require('chai');const{ I }=inject();classAttachFile{constructor(){this.inputFileField='input[name=fileUpload]';this.fileSize='.file-size';this.fileName='.file-name'}asyncattachFileFrom(path){awaitI.waitForVisible(this.inputFileField)awaitI.attachFile(this.inputFileField,path)}asynchasFileSize(fileSizeText){awaitI.waitForElement(this.fileSize)constsize=awaitI.grabTextFrom(this.fileSize)expect(size).toEqual(fileSizeText)}asynchasFileSizeInPosition(fileNameText,position){awaitI.waitNumberOfVisibleElements(this.fileName,position)consttext=awaitI.grabTextFrom(this.fileName)expect(text[position-1]).toEqual(fileNameText)}}// For inheritancemodule.exports=newAttachFile();module.exports.AttachFile=AttachFile;Similarly, CodeceptJS allows you to generate PageFragments and any other abstractions
by running the go command with --type (or -t) option:
npx codeceptjs go --type fragmentPage Fragments represent autonomous parts of a page, like modal boxes, components, widgets.
Technically, they are the same as PageObject but conceptually they are a bit different.
For instance, it is recommended that Page Fragment includes a root locator of a component.
Methods of page fragments can use within block to narrow scope to a root locator:
const{ I }=inject();// fragments/modal.jsmodule.exports={root: '#modal',// we are clicking "Accept: inside a popup windowaccept(){within(this.root,function(){I.click('Accept');});}}To use a Page Fragment within a Test Scenario, just inject it into your Scenario:
Scenario('failed_login',async(I,loginPage,modal)=>{loginPage.sendForm('john@doe.com','wrong password');I.waitForVisible(modal.root);within(modal.root,function(){I.see('Login failed');})});To use a Page Fragment within a Page Object, you can use inject method to get it by its name.
const{ I, modal }=inject();module.exports={doStuff(){
...
modal.accept();
...
}}PageObject and PageFragment names are declared inside
includesection ofcodecept.conf.js. See Dependency Injection
StepObjects represent complex actions which involve the usage of multiple web pages. For instance, creating users in the backend, changing permissions, etc. StepObject can be created similarly to PageObjects or PageFragments:
npx codeceptjs go --type stepTechnically, they are the same as PageObjects. StepObjects can inject PageObjects and use multiple POs to make a complex scenarios:
const{ I, userPage, permissionPage }=inject();module.exports={createUser(name){// action composed from actions of page objectsuserPage.open();userPage.create(name);permissionPage.activate(name);}};You can inject objects per test by calling injectDependencies function in a Scenario:
Scenario('search @grop',(I,Data)=>{I.fillField('Username',Data.username);I.pressKey('Enter');}).injectDependencies({Data: require('./data.js')});This requires the ./data.js module and assigns it to a Data argument in a test.