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

@wdio/shared-store-service

Package Overview
Dependencies
Maintainers
3
Versions
425
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wdio/shared-store-service

A WebdriverIO service to exchange data across processes

  • 9.4.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
143K
increased by15.44%
Maintainers
3
Weekly downloads
 
Created

What is @wdio/shared-store-service?

@wdio/shared-store-service is a service for WebdriverIO that allows you to share data between different browser sessions and processes. This can be particularly useful for end-to-end testing scenarios where you need to maintain state or share information across different test runs.

What are @wdio/shared-store-service's main functionalities?

Set Data in Shared Store

This feature allows you to set a key-value pair in the shared store. The data can then be accessed by other browser sessions or processes.

await browser.sharedStore.set('key', 'value');

Get Data from Shared Store

This feature allows you to retrieve a value from the shared store using a key. This is useful for accessing data that was set in a different session or process.

const value = await browser.sharedStore.get('key');

Delete Data from Shared Store

This feature allows you to delete a key-value pair from the shared store. This can be useful for cleaning up data after tests have run.

await browser.sharedStore.delete('key');

Other packages similar to @wdio/shared-store-service

Keywords

FAQs

Package last updated on 12 Dec 2024

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