diff options
author | joshu9h <34069013+joshu9h@users.noreply.github.com> | 2020-12-13 15:43:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-13 15:43:50 +0100 |
commit | 8260435c8b33e0ea783a246bc1afd4164a1cfbc6 (patch) | |
tree | 2eb54f3db78236aa6a45ab6cf052d1488289335d | |
parent | 3c4a9c118844b8d436b1bdb2ece3cd6671371838 (diff) | |
download | searxng-8260435c8b33e0ea783a246bc1afd4164a1cfbc6.tar.gz searxng-8260435c8b33e0ea783a246bc1afd4164a1cfbc6.zip |
[Fix] Startpage
-rw-r--r-- | searx/engines/startpage.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/startpage.py b/searx/engines/startpage.py index 90ed0a7a1..16e846a14 100644 --- a/searx/engines/startpage.py +++ b/searx/engines/startpage.py @@ -36,8 +36,8 @@ search_url = base_url + 'do/search' # specific xpath variables # ads xpath //div[@id="results"]/div[@id="sponsored"]//div[@class="result"] # not ads: div[@class="result"] are the direct childs of div[@id="results"] -results_xpath = '//div[@class="w-gl__result"]' -link_xpath = './/a[@class="w-gl__result-title"]' +results_xpath = '//div[@class="w-gl__result__main"]' +link_xpath = './/a[@class="w-gl__result-url result-link"]' content_xpath = './/p[@class="w-gl__description"]' |