public static void Main()
var html = @"https://dubai.dubizzle.com/property-for-sale/residential/apartment/2021/6/21/fully-upgraded-luxury-unobstructed-view-mu-2-490/?tracking_info={%22userPath%22%3A%22LPV_Pos_FA_0%22}&funnel_subsection=LPV_Pos_FA_0&page=1";
HtmlWeb web = new HtmlWeb();
var htmlDoc = web.Load(html);
var node = htmlDoc.DocumentNode.SelectSingleNode("//span[@class='" + "Price__Currency-oy86u1-0 kHpGMl" + "']");
Console.WriteLine("Node Name: " + node.Name + "\n" + node.OuterHtml);