Jump to content
UBot Underground

Google Scrapper Doesn't Scrape URL


Recommended Posts

HI

 

I was Try to Scrape Google result todays, but its ended like $scrape atribute  function is not working fine

 

Its just me or anyone is having the same issue, I attched My bot also, please give me any advice.

 

Thank you

google scrapper.ubot

Edited by north_star
Link to post
Share on other sites

Try this....

 

clear list(%url)
navigate("google.com", "Wait")
type text(<name="q">, "test", "Standard")
click(<name="btnG">, "Left Click", "No")
wait for browser event("Everything Loaded", "")
add list to list(%url, $scrape attribute(<class="l">, "fullhref"), "Delete", "Global")
load html(%url)

  • Like 1
Link to post
Share on other sites
Try this....

 

clear list(%url)

navigate("google.com", "Wait")

type text(<name="q">, "test", "Standard")

click(<name="btnG">, "Left Click", "No")

wait for browser event("Everything Loaded", "")

add list to list(%url, $scrape attribute(<class="l">, "fullhref"), "Delete", "Global")

load html(%url)

 

 

Still not working Chriss, I'm using standart License. Thank you

Link to post
Share on other sites

O'k well I am unsure what is in the standard but looking at your code below you are typing text and then waiting but you have not clicked search in google.

 

navigate("google.com", "Wait")
type text(<name="q">, "test", "Standard")
In here add a click search button.
and here add wait for browser event (Everything Loaded)
wait for element(<innertext="Next">, "", "Appear")
add list to list($scrape attribute(<class="l">, "href"), %url, "Delete", "Global")
load html(%url)

 

Edited by ChrisDH
Link to post
Share on other sites
O'k well I am unsure what is in the standard but looking at your code below you are typing text and then waiting but you have not clicked search in google.

 

navigate("google.com", "Wait")

type text(<name="q">, "test", "Standard")

In here add a click search button.

and here add wait for browser event (Everything Loaded)

wait for element(<innertext="Next">, "", "Appear")

add list to list($scrape attribute(<class="l">, "href"), %url, "Delete", "Global")

load html(%url)

 

 

 

Thank you Chriss, I had added The click Button on it, But it seems the problem is with $Scraping Attribute node...it doesnt work. 

Link to post
Share on other sites

I think you mixed up the add list to list($scrape attribute(<class="l">, "href"), %url, "Delete", "Global")
It should be the other way around.
add list to list(%url, $scrape attribute(<class="l">, "href"), "Delete", "Global")

  • Like 1
Link to post
Share on other sites
I think you mixed up the add list to list($scrape attribute(<class="l">, "href"), %url, "Delete", "Global")

It should be the other way around.

add list to list(%url, $scrape attribute(<class="l">, "href"), "Delete", "Global")

 

 

you right, Thank you 

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...