An open API service indexing awesome lists of open source software.

https://github.com/zewa666/puppeteer-extra-plugin-aurelia-store

Puppeteer extra plugin that allows to dispatch actions to the Aurelia Store during automation
https://github.com/zewa666/puppeteer-extra-plugin-aurelia-store

Last synced: 3 months ago
JSON representation

Puppeteer extra plugin that allows to dispatch actions to the Aurelia Store during automation

Awesome Lists containing this project

README

        

# puppeteer-extra-plugin-aurelia-store

> A plugin for [puppeteer-extra](https://github.com/berstend/puppeteer-extra).

### Install

```bash
npm install puppeteer-extra-plugin-aurelia-store
```

### Use

```typescript
const browser = await puppeteer.launch({
headless: false
});

const page = await browser.newPage();
await (page as any).connectToStore();
await page.dispatch('actionname', param1, paramN);
```