# playwright_notes **Repository Path**: astroch/playwright_notes ## Basic Information - **Project Name**: playwright_notes - **Description**: playwright 使用笔记 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-12-08 - **Last Updated**: 2023-12-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ```git 创建 git 仓库 mkdir playwright_notes cd playwright_notes git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/shuan0722/playwright_notes.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin https://gitee.com/shuan0722/playwright_notes.git git push -u origin "master" ``` ```python # 使用playwright登录账号,并记录cookies # 使用requests请求并携带cookies爬去数据,存入mongo # 读取mongo数据,将数据输出为md格式 ```