Answers for "scrapping left pane of google maps"

0

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);
Posted by: Guest on June-24-2021

Browse Popular Code Answers by Language