scrapping left pane of google maps
const scrollable_section = '.section-listbox .section-listbox';
await page.waitForSelector('.section-listbox .section-listbox > .section-listbox');
await page.evaluate(selector => {
const scrollableSection = document.querySelector(selector);
scrollableSection.scrollTop = scrollableSection.offsetHeight;
}, scrollable_section);