2023-03-19から1日間の記事一覧

playwright - page.waitForFunctionサンプル

test("page.waitForFunction_sample", async ({ page }) => { await page.goto("https://www.lambdatest.com/selenium-playground/simple-form-demo") // テキストボックス入力を監視する関数を定義 const watchDog = page.waitForFunction(() => { return d…

playwright - 複数要素

import { test, expect } from "@playwright/test" test("複数の要素を取得した時の処理", async ({ page }) => { await page.goto("https://www.lambdatest.com/selenium-playground/bootstrap-dual-list-box-demo") // 要素を取得 const links = await pag…