Compare commits
No commits in common. "f4d2df91446035b32fb0a07b86ff8c9f3472d131" and "8d9d1d5867898e794a4e94b1917da4a91b1510f2" have entirely different histories.
f4d2df9144
...
8d9d1d5867
1
douyin/.gitignore
vendored
1
douyin/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
profiles
|
|
||||||
@ -1,26 +0,0 @@
|
|||||||
// node run.js https://example.com/dashboard
|
|
||||||
import { chromium } from 'playwright';
|
|
||||||
|
|
||||||
const userDataDir = './profiles/site1';
|
|
||||||
const targetUrl = process.argv[2] || 'https://baidu.com/';
|
|
||||||
|
|
||||||
const context = await chromium.launchPersistentContext(userDataDir, {
|
|
||||||
headless: true, // 无头
|
|
||||||
});
|
|
||||||
await context.addInitScript({ path: './userscripts/my-script.js' });
|
|
||||||
|
|
||||||
const page = context.pages()[0] || await context.newPage();
|
|
||||||
await page.goto(targetUrl, { waitUntil: 'networkidle' });
|
|
||||||
|
|
||||||
// === 你的自动化逻辑(示例)===
|
|
||||||
await page.click('text=开始任务', { timeout: 10_000 }).catch(()=>{});
|
|
||||||
await page.waitForTimeout(1000);
|
|
||||||
|
|
||||||
// @ts-ignore
|
|
||||||
console.log('当前用户:', await page.evaluate(() => document.title));
|
|
||||||
|
|
||||||
// 示例:截图/导出结果
|
|
||||||
await page.screenshot({ path: './out.png', fullPage: true });
|
|
||||||
|
|
||||||
await context.close();
|
|
||||||
console.log('Done.');
|
|
||||||
@ -1,25 +0,0 @@
|
|||||||
// node login.js https://example.com/login
|
|
||||||
import { chromium } from 'playwright';
|
|
||||||
|
|
||||||
const userDataDir = './profiles/site1';
|
|
||||||
const startUrl = process.argv[2] || 'https://douyin.com';
|
|
||||||
|
|
||||||
const context = await chromium.launchPersistentContext(userDataDir, {
|
|
||||||
headless: false, // 首次建议“有头”,方便手工/2FA
|
|
||||||
args: ['--disable-blink-features=AutomationControlled'],
|
|
||||||
});
|
|
||||||
await context.addInitScript({ path: './userscripts/my-script.js' });
|
|
||||||
|
|
||||||
const page = context.pages()[0] || await context.newPage();
|
|
||||||
await page.goto(startUrl, { waitUntil: 'domcontentloaded' });
|
|
||||||
|
|
||||||
// 在这一步完成你的登录(手输或自动化都可)
|
|
||||||
console.log('>>> 请在打开的浏览器里完成登录,完成后回到终端按回车...');
|
|
||||||
process.stdin.resume();
|
|
||||||
await new Promise(r => process.stdin.once('data', r));
|
|
||||||
|
|
||||||
// 可选:导出 storageState 做备份(即使不用它,持久化目录也保存了)
|
|
||||||
await context.storageState({ path: `${userDataDir}/storageState.json` });
|
|
||||||
await context.close();
|
|
||||||
|
|
||||||
console.log('>>> 登录态已写入 profiles/site1/,后续可无头复用。');
|
|
||||||
Loading…
x
Reference in New Issue
Block a user