-
-
Notifications
You must be signed in to change notification settings - Fork 741
Feat/download file puppeteer #1343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/download file puppeteer #1343
Conversation
kobenguyent
commented
Nov 21, 2018
- Introduce download action for puppeteer.
- test is added.
syncing with head fork project
synced with head fork
synced with fork project
Thanks, a very nice PR but it needs some improvement. |
This is basically to click a button, link in AUT to download file. This file is downloaded to output folder. And this function makes sure download function is working on the application. For instance: you have a web application that let users can upload/ download their images, documents. By using Hope I explain it’s clear ^^ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I had this review as a draft for I think a month now. Unfortunately only now I found out it was not submitted :(
@@ -23,7 +23,8 @@ const path = require('path'); | |||
const ElementNotFound = require('./errors/ElementNotFound'); | |||
const Popup = require('./extras/Popup'); | |||
const Console = require('./extras/Console'); | |||
|
|||
const request = require('request-promise'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
request-promise is outdated. Let's switch to axios
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I created another PR to follow up this -> #1542