this time I would like to click a button in order to load more real-time searches. Here is the link of the website:
https://trends.google.com/trends/trendingsearches
for scrolling down you can use this code :
driver.execute_script("window.scrollTo(0, Y)")
where Y : is the vertical position you want to scroll to.(you can provide the value of Y as 100,200,300 as per your requirement).
Once scroll down is done, you can use this code :
load_more_button = WebDriverWait(driver,20).until(EC.element_to_be_clickable((By.XPATH, "//div[@ng-click='ctrl.loadMoreFeedItems()']")))
load_more_button.click()