I use WebDriver Factory and Start it at https://forum.knime.com, then I cannot use Find Elements node because When I open the configuration window of the Find Elements node, it always hangs and even closing the configuration window doesn’t help and I should force close KNIME.
This problem occurs only for this page. Why is that happening?
could you please attach your workflow so that I can have a look? Which browser are you using and have tried, whether the issue occurs on a different browser as well?
Just in case:
you can parse our forum via REST as well. Just use Using Find Elements node for KNIME Forum to get the content of this topic. Hence adding .json to the query. Works for each page.
Attached is the workflow. I tried MS Edge and Google Chrome and both had the same problem. The node cannot retrieve DOM preview from browser and hangs. I was getting a warn message in KNIME 3.6.2 console and unfortunately I didn’t take a screenshot and now that I’ve updated KNIME to 3.7 I see no warn message. When I close the configuration window, I cannot use KNIME anymore and I must force close KNIME and run it again.
The problem happens when I use https://forum.knime.com and works fine with other pages.
I wanted to login to forum from this page.
When I got in trouble using this page, I tried to go directly to the login page, but when I login it brings me to this page again. So I have to pass this page anyway.
I’ve found the issue being caused by the preview component. It seems to be caught into an infinite (or at least veeeeeeery long) loop when parsing the DOM string, or to be precise during syntax highlighting.
I’ll ship a bugfix release by tomorrow which simply disables the syntax highlighting for now, and see if we can work around this somehow in the future (not sure yet, as this GUI component is 3rd party)
Now that you told me how to get each topic via REST, a question came to my mind.
How can I get the links for all topics? So that I can collect them all.
Assume that I want to gather all the topic titles and their first post. In the old forum there were a list of topics in separate pages and one could use the next button to go through all topics automatically. But in this new forum new topics appear when one scrolls down.
Would you please help me with that?