소스 검색

[fix] google news dom xpath fix

misnyo 7 년 전
부모
커밋
3182ba7069
2개의 변경된 파일58개의 추가작업 그리고 8개의 파일을 삭제
  1. 2
    2
      searx/engines/google_news.py
  2. 56
    6
      tests/unit/engines/test_google_news.py

+ 2
- 2
searx/engines/google_news.py 파일 보기

@@ -67,8 +67,8 @@ def response(resp):
67 67
     for result in dom.xpath('//div[@class="g"]|//div[@class="g _cy"]'):
68 68
         try:
69 69
             r = {
70
-                'url': result.xpath('.//div[@class="_cnc"]//a/@href')[0],
71
-                'title': ''.join(result.xpath('.//div[@class="_cnc"]//h3//text()')),
70
+                'url': result.xpath('.//a[@class="l _PMs"]')[0].attrib.get("href"),
71
+                'title': ''.join(result.xpath('.//a[@class="l _PMs"]//text()')),
72 72
                 'content': ''.join(result.xpath('.//div[@class="st"]//text()')),
73 73
             }
74 74
         except:

+ 56
- 6
tests/unit/engines/test_google_news.py
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기