Jump to content
UBot Underground

Recommended Posts

Where is the scape table command in Ubot Studio 5.0.13? I need to scrape a code from a website which changes frequently and Ubot Studio can't find the code on the side anymore if the code changes with wildcard and the scrape attribute command so I submitted a ticket and got this answer can you tell me what I have to do I don't know how to work with the following command text...

 

The answer:

''What I recommend instead of trying to scrape that specific code, is to scrape the table,and then pull the value you want from row 8 column 2:

scrape table(<innertext=" Account ID: ">, &blue)
alert($table cell(&blue, 8, 2))
set(#mycode, $table cell(&blue, 8, 2), "Global")''

Link to post
Share on other sites

Well which part you don't undersand? They gave you the code so just copy it to your UBot and run it....it will create a table based on the HTML table that you are trying to scraping. After that you just use "$table cell" function to read specific row/column.

Link to post
Share on other sites

I find ''scrape table'' under Browser Commands in v5.

Ah you are right, "scrape table" is a native UBot command, plugin only contains command for sorting the table.

 

So the code that the support gave you Cedric55555 should work out of the box.

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...