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
Find it with find_elements_by_css_selector and click on it. I don't think if you need to wait or scroll.
find_elements_by_css_selector
element = driver.find_elements_by_css_selector("div[ng-click=\"ctrl.loadMoreFeedItems()\"]") element.click()
Read this answer, if you wonder why I have not used xPath.
xPath