Browse Source

[fix] engine - brave

jazzzooo 1 year ago
parent
commit
b189578b6b
1 changed files with 6 additions and 6 deletions
  1. 6 6
      searx/engines/brave.py

+ 6 - 6
searx/engines/brave.py

@@ -241,17 +241,17 @@ def _parse_search(resp):
         result_list.append({'answer': extract_text(answer_tag), 'url': url})
 
     # xpath_results = '//div[contains(@class, "snippet fdb") and @data-type="web"]'
-    xpath_results = '//div[contains(@class, "snippet")]'
+    xpath_results = '//div[contains(@class, "snippet ")]'
 
     for result in eval_xpath_list(dom, xpath_results):
 
-        url = eval_xpath_getindex(result, './/a[@class="result-header"]/@href', 0, default=None)
-        title_tag = eval_xpath_getindex(result, './/span[@class="snippet-title"]', 0, default=None)
-        if not (url and title_tag):
+        url = eval_xpath_getindex(result, './/a[contains(@class, "h")]/@href', 0, default=None)
+        title_tag = eval_xpath_getindex(result, './/div[contains(@class, "title")]', 0, default=None)
+        if url is None or title_tag is None:
             continue
 
-        content_tag = eval_xpath_getindex(result, './/p[@class="snippet-description"]', 0, default='')
-        img_src = eval_xpath_getindex(result, './/img[@class="thumb"]/@src', 0, default='')
+        content_tag = eval_xpath_getindex(result, './/div[@class="snippet-description"]', 0, default='')
+        img_src = eval_xpath_getindex(result, './/img[contains(@class, "thumb")]/@src', 0, default='')
 
         item = {
             'url': url,