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

eyes.selenium

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eyes.selenium

Applitools Eyes SDK For Selenium JavaScript WebDriver

  • 0.0.30
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.5K
decreased by-12.1%
Maintainers
1
Weekly downloads
 
Created
Source

eyes.selenium

Applitools Eyes SDK For Selenium JavaScript WebDriver

Getting Started

Install eyes.selenium as a local dev dependency in your tested project:

npm install eyes.selenium

Add Eyes to your tests, for example - when directly using selenium-webdriver:

var webdriver = require('selenium-webdriver');

var driver = new webdriver.Builder().
    withCapabilities(webdriver.Capabilities.chrome()).
    build();

var Eyes = require('eyes.selenium').Eyes;
var eyes = new Eyes();
eyes.setApiKey("<YOUR_API_KEY>");

eyes.open(driver, "JavaScript SDK", "Simple JS SDK Test").then(function(driver) {
    driver.get('http://www.google.com');
    eyes.checkWindow("Google");
    driver.get('http://www.nba.com');
    eyes.checkWindow("NBA");
    eyes.close();
    driver.quit();
});

Keywords

FAQs

Package last updated on 15 Apr 2015

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