Skip to content

Instantly share code, notes, and snippets.

@marceloag
Created January 22, 2019 19:02
Show Gist options
  • Save marceloag/c3a69f1b4130a00343c6fa711d6c28a8 to your computer and use it in GitHub Desktop.
Save marceloag/c3a69f1b4130a00343c6fa711d6c28a8 to your computer and use it in GitHub Desktop.
Cool Ql
{
terrenos: site(url: "https://www.yapo.cl/magallanes_antartica/comprar?ca=14_s&cmn=290&ret=5&cg=1220&o=1") {
numberOfTitles: count(elem: "tr.listing_thumbs")
titles: selectAll(elem: "tr.listing_thumbs") {
select(elem :".title") {
titulo :text
url : href
}
precio : select(elem :".price") {
text
}
img : select(elem :".image") {
src
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment