elstc/codeception-mobileemulation

WebDriver mobile emulation switcher for Codeception

v1.0.0 2018-01-19 10:56 UTC

This package is auto-updated.

Last update: 2024-02-29 03:11:40 UTC


README

Software License Build Status Latest Stable Version

This Codeception module can be able mobile emulation on browser. Currently support only chrome browser.

Installation

You can install this plugin into your applicaion using composer.

The recommended way to install composer packages is:

composer require --dev elstc/codeception-mobileemulation

Then enable this module in your test suite configration file (eg: acceptance.suite.yml and etc...):

modules:
    enabled:
        - MobileEmulation
        - WebDriver

See: 06-ModulesAndHelpers - Codeception - Documentation

[IMPORTANT] MobileEmulation module should be load before WebDriver module.

Usage

In your Cest test case, write $mobileEmulation property:

class AwesomeCest
{
    public $mobileEmulation = true;

    // ...
}

When $mobileEmulation = true, within this testcase, mobile emulation is enabled.

And you can use emulationMobile() method:

class AwesomeCest
{
    public function tryYourSenario($I)
    {
        // enable mobile emulation manually, (with specific device name)
        $I->emulationMobile('iPhone 8 Plus');
        // ...
    }
}

Configuration options

defaultDeviceName

Default emulate device name.

default: 'iPhone 6'