Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including puppeteer-extra-plugin-angular with all npm packages installed. Try it out:

const puppeteer = require('puppeteer-extra'); puppeteer.use(require('puppeteer-extra-plugin-angular')()); (async () => { const browser = await puppeteer.launch(); const page = await browser.newPage(); // Navigate to given Url and wait until Angular is ready. await page.navigateUntilReady('https://angular.io'); // Selector will find a button on the top of the page that say "Get Started". await page.clickIfExists('a.button.hero-cta', 'Top Get Started Button'); // Should navigate to the new Url. console.log(page.target().url()); // https://angular.io/start // Selector won't find any element on this page. await page.clickIfExists('a.button.hero-cta', 'Top Get Started Button'); // Url should be the same console.log(page.target().url()); // https://angular.io/start await page.close(); await browser.close(); })();

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

puppeteer-extra-plugin-angular v3.2.4

A plugin for puppeteer-extra to provide puppeteer functionality with Angular synchronization support.

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free