I\'m currently working on a JavaFX project. On GUI initialization I want to read some infos out of a HTML document using Selenium and FirefoxDriver. Normally I would use a crawl
st.run();
which runs st on the calling thread -- not what you want. You should be calling st.start()
!new Thread(myRunnable).start();