This way we can send HTTP requests from the Node.js instead of UI interactions.
const cookies = await page.cookies()
cookies.forEach(
async cookie => {
await setCookie(
`${cookie.name}=${cookie.value}`,
'https://www.example.com'
)
}
)
const { request } = await got('https://www.example.com', { cookieJar })
thanks but i have an error and i don't understand.
/root/cookies.js:4
const got = require('got')
^
error [ERR_REQUIRE_ESM]: require() of ES Module /root/node_modules/got/dist/source/index.js from /root/cookies.js not supported.
Instead change the require of index.js in /root/cookies.js to a dynamic import() which is available in all CommonJS modules.
at Object. (/root/cookies.js:4:13) {
code: 'ERR_REQUIRE_ESM'
}
thanks