Compare commits

...

2 commits

Author SHA1 Message Date
304a4f8425 add start script 2024-09-17 20:47:33 +02:00
021cb4a00f update room url 2024-09-17 20:47:10 +02:00
2 changed files with 4 additions and 1 deletions

View file

@ -10,7 +10,7 @@ const page = await browser
.pages() .pages()
.then((pages) => pages[0] || browser.newPage()); .then((pages) => pages[0] || browser.newPage());
await page.goto("https://meet.vpsfree.cz"); await page.goto("https://meet.vpsfree.cz");
await page.locator("#enter_room_field").fill("parsifal-parsifal-parsifal"); await page.locator("#enter_room_field").fill("parsifalove");
await page.locator("#enter_room_button").click(); await page.locator("#enter_room_button").click();
await page.waitForSelector("body"); await page.waitForSelector("body");

View file

@ -1,4 +1,7 @@
{ {
"scripts": {
"start": "tsx index.mts"
},
"dependencies": { "dependencies": {
"puppeteer": "^23.3.0", "puppeteer": "^23.3.0",
"tsx": "^4.19.1" "tsx": "^4.19.1"