I want to get variable price from https://www.tradingview.com/symbols/EURUSD/
Name:  SharedScreenshot.jpg
Views: 396
Size:  15.4 KB
I saw in the inspect, regarding the data, the line
HTML Code:
span class="last-JWoJqCpY js-symbol-last">
I tried to get the data by
Code:
Html.GetElementsByClassName("last-JWoJqCpY js-symbol-last").item (0)
the output was
[object HTMLSpanElement]
but I need the price
How can I do that?