0

在 Testfx FxRobot 框架中使用 Awaitility - 无法等到节点可见每次当 UI 轮询上未显示 fxid 元素时,它都会抛出未找到节点。另一件事是保存捕获的快照路径,我不知道如何使用 Image 以及如何在 catch 中提供路径。请帮忙。

public <T extends Node> TextField lookupByIdTextField( String controlId,FxRobot robot) {
    try {
        with()
        .await()
        .pollDelay(2,  TimeUnit.SECONDS)
        .atMost(60, TimeUnit.SECONDS)
        .until(() -> (robot.lookup(controlId).queryAs(TextField.class))!= null);
    }catch(Exception e)
    {
        logger.error(e.getMessage());
        Rectangle2D r=new Rectangle2D(0, 0, 600, 700);
        Capture c=robot.capture(r);
        c.getImage();


    }

    return robot.lookup(controlId).queryAs(TextField.class);

}
4

0 回答 0