I want to scrape a website with french result , the website support many languages . How can I do that , is it better to configure puppeteer Crawler launch options in args as in puppeter like that :
const pptr = require("puppeteer");
(async () => {
const browser = await pptr.launch({
headless: false,
args: [
'--lang=fr'
] });
})();
in Apify , as I understand will be as that :
const Apify = require("apify");
(async () => {
const browser = await Apify.launchPuppeteer({
headless: false,
args: [
'--lang=fr'
] });
})();
And how can I use Apify Proxies for this case .
There isn't any magic option on the browser. The website will figure your language depending on your IP location or cookies you set up. If you are on the page, you can check what cookies are set for the specific language (if the website has this option) and then set them up for your scraper.
Or you can use localized proxies to get the correct IP address.