make google featured snippet selector stricter
This commit is contained in:
parent
096ece1ff7
commit
f9c6602cc1
@ -53,10 +53,10 @@ pub fn parse_response(body: &str) -> eyre::Result<EngineResponse> {
|
|||||||
|
|
||||||
Ok(description)
|
Ok(description)
|
||||||
})))
|
})))
|
||||||
.featured_snippet_title("h3")
|
.featured_snippet_title(".g > div[lang] a h3")
|
||||||
.featured_snippet_href(QueryMethod::Manual(Box::new(|el: &ElementRef| {
|
.featured_snippet_href(QueryMethod::Manual(Box::new(|el: &ElementRef| {
|
||||||
let url = el
|
let url = el
|
||||||
.select(&Selector::parse("div[lang] a").unwrap())
|
.select(&Selector::parse(".g > div[lang] a:has(h3)").unwrap())
|
||||||
.next()
|
.next()
|
||||||
.and_then(|n| n.value().attr("href"))
|
.and_then(|n| n.value().attr("href"))
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
Loading…
Reference in New Issue
Block a user