I try to extract a value from a website and use the HTTP (get) node connected to a HTML node.
I cannot figure out how to extract a value on the page.
The value I want to retrieve is "F56386285397M4Y403" and is on the buttom of the page which will be different each time te page is refreshed.
On the bottom of the HTML is the value located:
*<....*
*<script type="text/javascript">*
*// <![CDATA[*
*jQuery(document).ready(function() {liftAjax.lift_successRegisterGC();});*
*var lift_page = "F56386285397M4Y403";*
*// ]]>*
*</script></body>*
*</html>*
I know the path is :"/html/body/script[10]/text()"
How can I point the HTML node to this path and retrieve the value of var "lift page"?
(I do receive input in the HTML node from the HTTP node)