xpath - Web Crawling using import.io -
i trying crawl following website https://goo.gl/thqdhd using import.io tool. used connector tool parse whole search result specific query (and include pagination), , chosen rows in search result, unable select items'image box (as column)
import.io contain manually xpath overriding selected, tried select images in search results using following xpath:
.//*[@id='container-inner']/div[3]/div[4]/div[*]/div[1]/div/a/
which should represent columns of table, got following problem
what have selected not within result
the result here previous selected rows, inspected item box , made sure selection inside. please?
try //
instead of .//
. this:
//*[@id='container-inner']/div[3]/div[4]/div[*]/div[1]/div/a/
Comments
Post a Comment