Can I read the result of a Vue command in a web page using Octave's urlread or webread?

43 views Asked by At

I can get the HTML text of a web page that displays text I'd like to download. But that text is accessed in the HTML using Vue :

<div class="[margin string]">
<p class="[text formatting string]" v-html="result.summary.text">
</p>
</div>

Is there any way I can access the contents of result.summary.text thru urlread or webread?

I'm using Octave 6.2.0.

I accessed the HTML of the web page using "contents=urlread('')", where is the web page's URL in plain text. Using webread produced the same results, the HTML text of the web page.

The only thing I could think of to try was "contents=urlread('/result.summary.text')" which just returns the original web page's HTML.

Any ideas? Thanks in advance!

0

There are 0 answers