From b1e1d04eb0a994dacc5ae46f9b776c7b70410549 Mon Sep 17 00:00:00 2001 From: larsevj Date: Tue, 1 Oct 2024 17:41:50 +0200 Subject: [PATCH] Make sure run dialog is closed in gui test --- tests/ert/ui_tests/gui/test_main_window.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/ert/ui_tests/gui/test_main_window.py b/tests/ert/ui_tests/gui/test_main_window.py index 11135873474..3bb30e08da0 100644 --- a/tests/ert/ui_tests/gui/test_main_window.py +++ b/tests/ert/ui_tests/gui/test_main_window.py @@ -712,6 +712,7 @@ def handle_error_dialog(run_dialog): QTimer.singleShot(20000, lambda: handle_error_dialog(run_dialog)) qtbot.waitUntil(run_dialog.done_button.isVisible, timeout=100000) + qtbot.mouseClick(run_dialog.done_button, Qt.LeftButton) @pytest.mark.usefixtures("use_tmpdir", "set_site_config") @@ -809,14 +810,12 @@ def test_validation_of_experiment_names_in_run_models( (IteratedEnsembleSmoother.name(), "iterated_ensemble_smoother_panel"), ) for exp_type, panel_name in experiment_types_to_test: - print(f"{exp_type}") experiment_types.setCurrentText(exp_type) experiment_config_panel = get_child(gui, QWidget, name=panel_name) experiment_field = get_child( experiment_config_panel, StringBox, name="experiment_field" ) - print(f"{experiment_field.get_text=}") experiment_field.setText(" @not val id") assert not run_experiment.isEnabled()