- 日時:2015/11/07 10:00-21:30
- 会場:サイバーエージェント 13F
- 参考:http://nodefest.jp/2015/
- ハッシュタグ: #nodefest, #nodefestA, #nodefestB
- 参加者数:400名近く
- togetterまとめまとめ:http://togetter.com/li/897135
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
import { chromium, test, expect, Page } from '@playwright/test'; | |
test('テスターちゃんのサイトが表示されるか', async() => { | |
const browser = await chromium.launch({ headless: false }); | |
const context = await browser.newContext(); | |
const page = await browser.newPage(); | |
await page.goto('https://testerchan.hatenadiary.com/'); | |
await page.screenshot({ path: `images/test.png` }); | |
await waitForNetworkIdleInTargetDomain(page, "facebook.com"); |
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
import axios from "axios"; | |
import papa from "papaparse"; | |
import fs from "fs"; | |
import pMap from "p-map"; | |
// autifyのAPIキーとプロジェクトIDを設定します | |
const API_KEY = "api_key"; | |
const PROJECT_ID = "project_id"; | |
// autifyのテスト結果詳細は1ヶ月前までしか保存されていない | |
const DAYS_AGO = 35; |