Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyunseob/puppeteer-getting-started
I/O Extended 2019 WebTech에서 사용될 자료입니다.
https://github.com/hyunseob/puppeteer-getting-started
Last synced: 11 days ago
JSON representation
I/O Extended 2019 WebTech에서 사용될 자료입니다.
- Host: GitHub
- URL: https://github.com/hyunseob/puppeteer-getting-started
- Owner: HyunSeob
- License: mit
- Created: 2019-07-12T12:39:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T04:28:16.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T04:03:26.128Z (over 1 year ago)
- Language: JavaScript
- Size: 755 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Puppeteer: Getting Started
I/O Extended 2019 WebTech 행사에서 사용한 코드 모음입니다.
직접 테스트해보시기 위해서 Node.js와 yarn이 필요합니다.## 직접 테스트하기
### 의존성 설치하기
```sh
$ yarn # install
```### 스크린샷
```sh
$ node screenshot
``````sh
$ node pdf
```### e2e 테스트
다음과 같이 google-account.js를 작성합니다.
```js
module.exports = {
email: "[email protected]",
password: "your-google-password"
};
```그리고 명령어를 실행합니다.
```sh
$ yarn test
```### 크롤링
```sh
$ node crawling
```