This content from this markdown file has moved a new, happier home where it can serve more people. Please check it out : https://docs.microsoft.com/azure/azure-cache-for-redis/cache-best-practices.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const childProcess = require('child_process'); | |
| const puppeteer = require('puppeteer'); | |
| const request = require('request-promise-native'); | |
| var delay = require('timeout-as-promise'); | |
| function spawn(port) { | |
| return childProcess.spawn( | |
| // '/Applications/Visual\ Studio\ Code\ -\ Insiders.app/Contents/MacOS/Electron', | |
| '/Applications/Visual Studio Code.app/Contents/MacOS/Electron', | |
| [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using NUnit.Framework; | |
| namespace PuppeteerSharp.Contrib.Sample | |
| { | |
| public class Examples | |
| { | |
| async Task<IBrowser> Browser() | |
| { |