Hi. As you can see the image above is a data table from a website. I want to extract the entire table but Data Scraping Wizard cannot read the last column since it is an image. What else can I do for extracting the last column into a text or something like true or false?
You can do data scraping for the first 8 columns in a datatable and last column in a different datatable. After that you can add the second datatable into the first one.
I hope this will help, let us know what you are getting for the last column in your datatable while you are scraping it.
I suppose you can get the src URL image via Data Scarping with some tuning.
Can you try the following steps?
Start Data Scraping wizard
Select a cell of image as first element. Then do Not choose Whole table.(Click “No”)
Select a cell of image as second element.
You can see Configure Columns Dialog, and click “next”.
Preview data will be shown (and there will be no data). Click “Edit Data Definition”
You can get like the following selector <extract> <column exact="1" name="Column1" attr="text"> <webctrl tag="tbody" idx="1"/> <webctrl tag="tr"/> <webctrl tag="td" idx="2"/> <webctrl tag="img" idx="1"/> </column> </extract>
Set the value of attr “text” to “src” <column exact="1" name="Column1" attr="src">
If there is no “tag=‘img’”, add the following. <webctrl tag="img" />
Probably you can get the src url of image and you can identify which it is.