Jump to content
UBot Underground

How To List Scraped Data In Some Ui Box For Ease


Recommended Posts

Hi,

I want to scrape 4 fields of a webpage But I want to show the scraped data in UI section of bot so that I can copy it easily..

 

Now issues is How this can done ..if possible if not possible is it possible to have a single text file of example below..

 

and is there any way I can have all 4 field scraped data in single UI box 

But single UI box should have data according to fields.

 

like if the webpage have 10 parts from 1 ...10 and part have 4 fields...name,age,address,city

 

now is this possible to have data in this manner in a UI box or a text file single 

 

example 

 

Line 1 of text file = Name of part 1

Line 2 of text file = age of part 1

Line 3 of text file = address of part 1

Line 4 of text file = city of part 1

 

Line 5 of text file = Name of part 2

Line 6 of text file = age of part 2

Line 7 of text file = address of part 2

Line 8 of text file = city of part 2

Link to post
Share on other sites

yes can do that

ui block text("text",#blockText)
set(#scrapeLine1,"scrapeLine1","Global")
set(#scrapeLine2,"scrapeLine2","Global")
set(#scrapeLine3,"scrapeLine3","Global")
set(#scrapeLine4,"scrapeLine4","Global")
set(#scrapeLine5,"scrapeLine5","Global")
set(#scrapeLine6,"scrapeLine6","Global")
set(#scrapeLine7,"scrapeLine7","Global")
set(#scrapeLine8,"scrapeLine8","Global")
set(#scrapeLine9,"scrapeLine9","Global")
set(#scrapeLine10,"scrapeLine10","Global")
set(#blockText,"{#scrapeLine1}{$new line}{#scrapeLine2}{$new line}{#scrapeLine3}{$new line}{#scrapeLine4}{$new line}{$new line}{#scrapeLine5}{$new line}{#scrapeLine6}{$new line}{#scrapeLine7}{$new line}{#scrapeLine8}{$new line}{#scrapeLine9}{$new line}{#scrapeLine10}","Global")​

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