Forum Discussion
- nmraoChampion Level 3You should be able to find the sample code snippets online.
Such as
https://binarybuffer.com/post/2012-05-09-parsing-html-pages-like-a-boss-with-groovy/
May be you want to precise more ? - aaronpliuFrequent Contributor
Hi 678 ,
Suggest to use jsoup (ReadyAPI contains this jar in /lib)
// extract node value if need import org.jsoup.* def htmlResponse = testRunner.testCase.testSteps["YourStepName"].testRequest.response.contentAsString def htmlParse = Jsoup.parse(htmlResponse) // for example, retrieve value from "input" node htmlParse.select("input").each { if (it.attr("name") == "xxxxxx") { // get value log.info java.net.URLEncoder.encode(it.attr("value"), "UTF-8) } }
BR,
/Aaron
- 678Regular Contributor
basically i have a project report on HTML created on projectfolder
I need only TestSuite results page to be extract - any help ?
Related Content
- 2 years ago
- 9 years ago