Michael Ennen
Michael Ennen
Do you mean something like https://github.com/TestFX/TestFX/pull/355 ? I was able to pull most things directly out of `com.sun.javafx.robot.impl.BaseFxRobot` so I am not sure about copyright, etc. But as a proof...
TestFX *should* be working on Java 9 as I removed all uses of the private API. I would speak with more confidence if I could run the test suite but...
Indeed - it would honestly not take that much work to also add the equivalent `pom.xml`'s for TestFX...I will look in to maybe doing this in the meanwhile for Java...
CSS queries do not work transparently across the TestFX/WebView boundary. If you want to test things in a WebView I would recommend using a javascript testing library and stay inside...
If you want to "cross the boundary" you can do something like this: ```java ArgumentCaptor bitfinexCredentialsCaptor = ArgumentCaptor.forClass( BitfinexCredentials.class); CountDownLatch latch = new CountDownLatch(1); Platform.runLater(() -> webEngine.getLoadWorker().stateProperty().addListener((obs, old, newState) ->...
Related: https://bugs.openjdk.java.net/browse/JDK-8176884
It appears that `JFXTreeTableView` extends JavaFX's `TreeTableView` which does not extend`TableView`. So in order to use TestFX to assert conditions about `TreeTableViews` (or their descendants) we need to add a...
It should be relatively simple by using `TableViewMatchers` as a reference. Is it something you would be willing to take a stab at? Otherwise I will try and do it...
Do you plan on opening any PRs for this issue in the next couple days? If not, I will go ahead and issue a new release (4.0.14-alpha). If you do,...
Would it be possible to see the entire test source code?