Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-auto-test

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-auto-test

Scaffolding on top of Protractor to follow the Page Object pattern for Automated UI tests.

  • 0.0.3-alpha.9
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

js-auto-test

The purpose of js-auto-test is to provide some scaffolding on top of protractor to follow the Page Object pattern for Automated UI tests. The Library contains some classes to help structure and automate your tests. The CLI provides a simple way to run tests with either the default config, environment variables, or override with your own config.

Library

The library consists of two main classes: Fragment and Sequence.

A Fragment is a group of HTML that can be tested. For instance, a top level navigation bar is a reusable group of HTML that could show up on many pages. It can be used as a shared Fragment component that can be associated with other Fragments. If you have unique content on the home page, you can make a home page Fragment that is associated with your navigation Fragment above. The purpose of a Fragment is for testing its elements and optionally performing actions against its elements.

  • NOTE: Action methods will need to be added per use case, requests for common Actions are welcome. (element api)

A Sequence defines the steps an automated UI test specification needs to perform. It is also responsible to setting the entry point to the test sequence. It provides a Fragment cache to reference for each step in the sequence that will need to be defined. I've started out with some basics and will be adding more over time (and open to requests).

Example

Here is a simple example of an implementation using js-auto-test. When testing a larger site with many tests, you will want to consider some structure around your code. I've added a suggested minimal folder structure below. I have also created a starter kit that contains the basic structure below with additional support scripts and environment/execution specifics.

  • ./fragments/HomeFragment.js

    import { Fragment } from 'js-auto-test';
    
    const LINK_SELECTOR = 'a.link';
    
    
    export default class HomeFragment extends Fragment {
    
        constructor(fragments) {
            super(fragments);
    
            this.setElement(LINK_SELECTOR);
        }
    
        async testElements() {
            await super.testElements();
    
            await this.expect(this.getElement(LINK_SELECTOR).getText()).to.eventually.equal('some text');
        }
    
        async clickLink() {
            await this.getElement(LINK_SELECTOR).click();
        }
    
    }
    
  • ./sequences/HomeSequence.js

    import { Sequence } from 'js-auto-test';
    
    import HomeFragment from '../fragments/HomeFragment';
    
    
    export default class HomeSequence extends Sequence {
    
        constructor() {
            super();
    
            this.setFragment('home', new HomeFragment());
    
            this.setStep(this.getFragment('home').testElements);
            this.setStep(this.getFragment('home').clickLink);
        }
    
        async runSequence() {
            this.setStep(this.getUrl('/'));
    
            await super.runSequence();
        }
    
    }
    
  • ./specs/home.spec.js

    import HomeSequence from '../sequences/HomeSequence';
    
    describe('home page test', () => {
        let homeSequence;
    
        before(() => {
            homeSequence = new HomeSequence();
        });
    
        it('expects to see "some text" on the home page', async () => {
            await homeSequence.runSequence();
        });
    
        after(() => {
            homeSequence = null;
        });
    });
    

Environment variables

Below is a table describing the possible environment variable or conf/config.js overrides if desired. This option works great if using the standard setup within a Docker container.

NameTypeDefault
DIRECT_CONNECTBooleanfalse
SELENIUM_URLString'http://localhost:4444/wd/hub'
TEST_BROWSER_NAMEString'phantomjs'
TEST_BROWSER_VERSIONString'ANY'
HTTP_PROTOCOLString'http://'
HTTP_HOSTString'localhost'
HTTP_PORTString3000

Future

  • unit tests!
  • additional functionality for common tests and actions
  • requests via issues

FAQs

Package last updated on 10 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc