Skip to content

E2E Browser Automation for web3 dApps using Cucumber+Playwright+Synpress in JavaScript

Notifications You must be signed in to change notification settings

rsksmart/e2e_dapps_automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

E2E Browser Automation for web3 dApps

Run native automation for web3 dApps using Cucumber-Playwright-Synpress in Javascript. In the current version of Synpress, only MetaMask wallet is supported. Support for other wallets is being added at Synpress New Dawn.

Table of Contents

Project Structure

e2e_dapps_automation/
 ├── config/
 │    ├── config.js                             # Stores and asigns global vars such as dApp under test or blockchain network
 │    ├── .env                                  # private local file to store wallet seeds (testing purposes)
 ├── src/
 │    ├── hooks/                                
 │         ├── fixture.js                       # Metamask configuration setup + Synpress integration
 │         ├── hooks.js                         # Cucumber hooks
 │    ├── pages/                        
 │         ├── demo.page.js                     # PageObject class with elements & methods 
 │    ├── test/
 │         ├── features/                        # Cucumber framework features folder
 │              ├── Demo.feature                # Demo feature with end-to-end scenarios
 │         ├── stepDefinitions          
 │              ├── demo.steps.js               # Class to model behaviors, connects test layer with page methods
 | cucumber.json                                # Cucumber config file

Installation

  • Clone the project https://github.com/rsksmart/e2e_dapps_automation

  • Install dependencies npm i in the terminal or run the npm:install script

  • Create a .env file inside config folder containing your MetaMask wallet address information (seed & password) as follows. Example:

secretWordsOrPrivateKey=test test test test test test test test test test test junk
password=Tester@1234
  • Please note that this is sensitive information, even if it is stored locally in the .env file. If shared anyhow you could potentially loose all your funds. Ensure the provided wallet is for testing purposes only.
  • Metamask version can be provided either in the .env file or in the src/hooks/fixtures.js file as follows:
const metamaskPath = await prepareMetamask(
    process.env.METAMASK_VERSION || "10.25.0"
);

dApp & Blockchain configuration

  • In order to be able to test your own dApp on your preferred blockchain, go to config/config.js and modify the following parameters:
// dApp under test
const dAppURL = 'https://wallet.testnet.rollup.rif.technology/';

// Custom network under test
const networkConfiguration = {
  networkName: 'Rootstock',
  rpcUrl: 'https://public-node.testnet.rsk.co',
  chainId: '31',
  symbol: 'RBTC',
  isTestnet: true
}

Running Tests 🚀

Since this is a boilerplate project, just a 'demo.feature' has been implemented. Feel free to build your test suite at src/test/features/_dappLivingDocumentation/

  • Execute test or npm test script to run the tests using chromium

Reporting 📊

  • Generated reports will be located at reports folder
  • Since Cucumber is the chosen runner, reports and other config options can be found at e2e_dapps_automation/cucumber.json

Sources

About

E2E Browser Automation for web3 dApps using Cucumber+Playwright+Synpress in JavaScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published