summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2022-08-09 06:28:03 +0200
committerGitHub <noreply@github.com>2022-08-09 06:28:03 +0200
commit3d6b098a5f07c68a6f2a8ec13f91fc28c31c0290 (patch)
tree54cff9b486d6b511b0c55ccf10a537457015178d
parent925f3ff48748e287ed596783658a4d15df257e30 (diff)
parent94b3656b4abb141f7256654c20c9e309225530a6 (diff)
Merge pull request #1633 from tiekoetter/fix-google-results-xpath
[fix] google engine: results XPath
-rw-r--r--searx/engines/google.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py
index 5e80f6dcc..71438631e 100644
--- a/searx/engines/google.py
+++ b/searx/engines/google.py
@@ -113,7 +113,7 @@ filter_mapping = {0: 'off', 1: 'medium', 2: 'high'}
# ------------------------
# google results are grouped into <div class="jtfYYd ..." ../>
-results_xpath = '//div[contains(@class, "jtfYYd")]'
+results_xpath = '//div[contains(@class, "kvH3mc")]'
# google *sections* are no usual *results*, we ignore them
g_section_with_header = './g-section-with-header'