npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@devtools-ai/cypress-sdk

v0.1.27

Published

DevTools AI Javascript plugin for Cypress

Downloads

33

Readme

dev-tools.ai sdk logo

npm version

Installation

Installation is simple. First add and install the package in your project.

Cypress 10

npm install --save @devtools-ai/cypress-sdk -D
yarn add @devtools-ai/cypress-sdk --dev

Then add to your cypress/support/index.js

import '@devtools-ai/cypress-sdk';

Then in your cypress.config.ts or cypress.config.js file. Import the plugin tasks and disable chromeWebSecurity.

import { defineConfig } from 'cypress';
import { registerSmartDriverTasks } from '@devtools-ai/cypress-sdk/dist/plugins';
export default defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      registerSmartDriverTasks(on, config);
      // implement node event listeners here
      return config;
    },
  },
  chromeWebSecurity: false,
});

Lastly, whenever you want to have the plugin enabled, allow for at least 1 retry for the test written. This allows the plugin to attempt getting the element once the test has failed getting the element normally.

describe('Should be able to login', () => {
  it(
    'Login',
    {
      retries: {
        // SmartDriver is used on the retries
        openMode: 3,
      },
    },
    () => {
      cy.visit('http://www.github.com/login');
      cy.get('login-box').type('[email protected]');
    },
  );
});

Done! 🎉

Cypress 9

npm install --save @devtools-ai/cypress-sdk -D
yarn add @devtools-ai/cypress-sdk --dev

Then add to your cypress/support/index.js

import '@devtools-ai/cypress-sdk';

Then in your plugins/index.js file. Import the plugin tasks and disable chromeWebSecurity in cypress.json file.

// plugins/index.js
const {
  registerSmartDriverTasks,
} = require('@devtools-ai/cypress-sdk/dist/plugins');

module.exports = (on, config) => {
  registerSmartDriverTasks(on, config);
  return config;
};

cypress.json

{
  "chromeWebSecurity": false
}

Lastly, whenever you want to have the plugin enabled, allow for at least 1 retry for the test written. This allows the plugin to attempt getting the element once the test has failed getting the element normally.

describe('Should be able to login', () => {
  it(
    'Login',
    {
      retries: {
        // SmartDriver is used on the retries
        openMode: 3,
      },
    },
    () => {
      cy.visit('http://www.github.com/login');
      cy.get('login-box').type('[email protected]');
    },
  );
});

Done! 🎉

Setting up the plugin

To get started, create a file in your project root folder called smartdriver.config.js. Then add your API key in it:

module.exports = {
  apiKey: 'YOUR_API_KEY_HERE',
};

This file may also contain any options for the JS sdk.

Interactive Mode

You may also want to enable to interactive mode. Interactive mode pauses the test so you can enter bounding boxes for test elements. These boxes only need to be added once during initial detection. You can enable this mode by exporting this environment variable and setting to true :

export DEVTOOLSAI_INTERACTIVE=TRUE

You can add this in the cypress.config.ts file.

export default defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      // bind to the event we care about
      registerSmartDriverTasks(on, config);
      return config;
    },
    env: {
      DEVTOOLSAI_INTERACTIVE: true,
    },
  },
  watchForFileChanges: true,
  chromeWebSecurity: false,
});

You can also add it to your .env file to avoid committing it.

 DEVTOOLSAI_INTERACTIVE=true

Sample usage

The SmartDriver will automatically kick in once getting an element fails. This applies for the "get" and "find" cypress commands.

cy.get('[name="login"]').type(username);

There is also a unique command, findByAI, that allows you to use human readable names instead of relying on selectors.

cy.findByAI('username-input-field').type(username);

Tutorial

We have a detailed step-by-step tutorial to help you get set up with the SDK: https://docs.dev-tools.ai/cypressio-basic-test-case