Puppeteerで環境変数を設定
■ Node.jsで環境変数を使えるようにする。
1. dotenvをインストール
npm install dotenv
2. 環境変数(.env)を設定
.env
NAME=まんちゃん
■ Puppeteerで動かしてみる。
1. 動作確認
npm install dotenv
.env
NAME=まんちゃん
1. 動作確認
日本Seleniumユーザーコミュニティのテストサイトを利用
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('http://example.selenium.jp/reserveApp/');
// 入力画面
await page.screenshot({path: 'before.png'});
await page.type('#guestname', process.env.NAME); // .envの環境変数を取得
await page.screenshot({path: 'after.png'});
await browser.close();
})();
実行
node --require dotenv/config dotenv_test.js
Author And Source
この問題について(Puppeteerで環境変数を設定), 我々は、より多くの情報をここで見つけました https://qiita.com/manchan/items/b7524fc9ba66980be7d3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .