page.setExtraHTTPHeaders({
'Accept-Charset': 'utf-8',
'Content-Type': 'text/html; charset=utf-8',
})
const response = await page.goto('https://hk.appledaily.com/realtime/realtimenews/20180228/local');
await page.setContent((await response.buffer()).toString('utf8'));
const $ = cheerio.load(pageContent, { decodeEntities: false });