Michael Ennen

Results 175 comments of Michael Ennen

Question 1: This line: ``` java int targetHeight = view.getHeight() - view.getPaddingTop() - view.getPaddingTop(); ``` Should it not be: ``` java int targetHeight = view.getHeight() - view.getPaddingTop() - view.getPaddingBottom(); ```...

The wiki is freely editable by all - contributions are much appreciated!

Trying to find browser DOM nodes inside of a WebView is very different from finding JavaFX scene-graph Nodes. I don't believe the former is supported on TestFX - I have...

I think that out of the box, as a blanket statement, testing the DOM inside a WebView is not possible :(

If you can create a self-contained test project that shows the failure, even if it only fails intermittently as you say, I will be able to help further. Unfortunately I...

I just want to make sure that you are using the latest released version, 4.0.5-alpha, because some exception handling masking was fixed recently?

Would it be possible for you to just copy the source code of one of the tests that fail? Doesn't have to be a self-contained project as I stated, just...

I don't see how the stack-trace you posted can possibly be from the latest version: https://github.com/TestFX/TestFX/blob/1f1956a40a79d645992981acf5272116a3f19e30/subprojects/testfx-core/src/main/java/org/testfx/util/WaitForAsyncUtils.java#L157

I have also used [TestFXRule](https://github.com/TestFX/TestFX/blob/master/subprojects/testfx-junit/src/main/java/org/testfx/framework/junit/TestFXRule.java) to wait for JavaFX initialization as well as retry failing tests. It's really not ideal but it does seem to work. Having a surefire way...

TestFX does not use that method, but headless JavaFX does. I think what needs to happen is a new release of openjfx-monocle with a newer version (like 8u221) as the...