Open pensiero opened 7 years ago
When running $table = $root->find('.TLB-container'); on
$table = $root->find('.TLB-container');
... <table class="TLB-container">...</table> ...
nothing is found. But it works if the html code is:
... <table class="tlb-container">...</table> ...
I think it's because of this line: https://github.com/fedexx2/html-parser/blob/master/src/HtmlParser/Selector.php#L39
In case, is it necessary?
When running
$table = $root->find('.TLB-container');
onnothing is found. But it works if the html code is: