diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-11-11 07:42:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 07:42:07 +0100 |
commit | e63457584b85b268bf5fd3e1ed3de7fb0265c8b2 (patch) | |
tree | 2c6eed7a32b3f9a3c7cc4dbe0b6806c9472b0e14 | |
parent | 117f69fa138ab5a50932ac673bf9f88033cbba33 (diff) | |
parent | 78be4b4c70679295782f1e2d56786124be6babed (diff) | |
download | searxng-e63457584b85b268bf5fd3e1ed3de7fb0265c8b2.tar.gz searxng-e63457584b85b268bf5fd3e1ed3de7fb0265c8b2.zip |
Merge pull request #1944 from ngosang/feature/google
Fix Google search engine.
-rw-r--r-- | searx/engines/google.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py index 2f894b21f..d77837c9e 100644 --- a/searx/engines/google.py +++ b/searx/engines/google.py @@ -112,9 +112,9 @@ filter_mapping = {0: 'off', 1: 'medium', 2: 'high'} # specific xpath variables # ------------------------ -results_xpath = '//div[contains(@class, "MjjYud")]' -title_xpath = './/h3[1]' -href_xpath = './/a/@href' +results_xpath = './/div[@data-sokoban-container]' +title_xpath = './/a/h3[1]' +href_xpath = './/a[h3]/@href' content_xpath = './/div[@data-content-feature=1]' # google *sections* are no usual *results*, we ignore them |