我在用剧作家和TS。
我目前正在使用默认的playwright设置(如果我没记错的话,它是匿名的)执行我的测试,我想用我自己的Chrome配置文件执行一些测试。
我试图在 chrome LaunchOptions
对象中搜索user-XXX
或profile
属性,但没有运气。
我当然查过文件什么都没查到
我问了一些人工智能工具,也没有帮助。
就像这样:
const browser = await chromium.launch({
channel: "chrome",
// Here is what I'm looking for
user_data_dir: "C:\\Users\\Home\\AppData\\Local\\Google\\Chrome\\User Data"
// or
user: ""
// or
profile: ""
});
字符串
或者通过BrowserContext...任何东西都有帮助。
1条答案
按热度按时间c6ubokkw1#
我想你需要
launchPersistentContext
的userDataDir
参数:字符串
这里有一个完整的,最小的例子。
index.html:
型
pw.js:
型
输出量:
型