Can someone tell me how Xpath Web Scrape activity works?
Here are the 2 example given along with the package.
Test Case 1:
Attribute: “INNERHTML”
URL: “XPath Tutorial”
XPath Selector: “//*[@id=”“main”“]/h2”
Test Case 2:
Attribute: “href”
URL: “XPath Tutorial”
XPath Selector: “//*[@id=”“main”“]/div[4]/a[1]”
Basically it will retrieve the list of string values that matches the Xpath from the given URL.
Thanks,
Rammohan B.
Thank you