I'm using Fizzler
for Html Agility Pack
. This is my selector which works fine width jquery when I test it in firebug:
$('table.adsh>tbody:nth-child(1)>tr:nth-child(4) table tr:nth-child(1)>td:nth-child(2)')
But this line of code returns null in C# code:
var item = page.QuerySelector("table.adsh>tbody:nth-child(1)>tr:nth-child(4) table tr:nth-child(1)>td:nth-child(2)");
item is always null. Is there any thing wrong with my selector?
Any help is appreciated in advance.