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
- Host: GitHub
- URL: https://github.com/zewa666/puppeteer-extra-plugin-aurelia-store
- Owner: zewa666
- License: mit
- Created: 2020-02-29T10:35:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-02T08:38:40.000Z (over 5 years ago)
- Last Synced: 2025-03-18T12:34:16.572Z (3 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```