Socket
Book a DemoInstallSign in
Socket

selenium-session-client

Package Overview
Dependencies
Maintainers
12
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

selenium-session-client

Selenium session client, selenium webdriver (for selenium 4), read the cookies information from the session server and apply it to the selenium session.

latest
npmnpm
Version
1.0.4
Version published
Weekly downloads
0
Maintainers
12
Weekly downloads
 
Created
Source

Javascript client

To install run:

npm install selenium-session-client

Following is a code example to integrate it into your Javascript Selenium tests:

import { Builder } from 'selenium-webdriver';
import chrome from 'selenium-webdriver/chrome.js';
import * as seleniumSessionClient from 'selenium-session-client';

let service = new chrome.ServiceBuilder('./chromedriver').build();
chrome.setDefaultService(service);
let driver = new Builder().forBrowser('chrome').build();

await seleniumSessionClient.initSession(driver, ['github']);
await driver.get('https://github.com');

Keywords

selenium

FAQs

Package last updated on 24 Nov 2025

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