All,
I'm trying to traverse the DOM tree using webbrowser control but oddly the text elements are not part of the children collection. As a work around I go to each node and check if innerText is populated and the number of children are empty.
But this doesn't catch scenarios like these
<div>
text element that cannot be detected
<span> text that is detected </span>
...
Search Result
Collapse
2 results in 0.0013 seconds.
Keywords
Members
Tags
-
Get text element using .net WenBrowser control
-
recursively traversing directory using php
I am try to write a program which can recursively traverse all files and if it finds directory then it goes inside that sub directory and list all files of that subdirectory, again comes back to main directory to traverse rest of the files...
Problem i am facing is, its just going inside first sub directory it comes across and then comes back to main directory, and treats all other files as files (even if its a directory). i am not...