Skip to content

feat: make BaseService methods async#474

Draft
olivermeyer wants to merge 9 commits intofeat/health-degradedfrom
feat/bridge-baseservice
Draft

feat: make BaseService methods async#474
olivermeyer wants to merge 9 commits intofeat/health-degradedfrom
feat/bridge-baseservice

Conversation

@olivermeyer
Copy link
Collaborator

No description provided.

olivermeyer and others added 8 commits March 13, 2026 10:46
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ervices [intermediate]

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…s [intermediate]

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ntermediate]

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…)/info() [intermediate]

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings March 13, 2026 10:21
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR converts the BaseService contract to an async interface (health() / info()), propagates that change across service implementations and key call sites (CLI/GUI), and adds a new FastAPI DI helper (BaseService.get_service()) plus a settings accessor.

Changes:

  • Make BaseService.health() / BaseService.info() async and update all service implementations accordingly.
  • Update system CLI/GUI and platform tests to await or run async health/info calls.
  • Add BaseService.get_service() (FastAPI dependency factory), BaseService.settings(), and accompanying tests/docs.

Reviewed changes

Copilot reviewed 17 out of 17 changed files in this pull request and generated 9 comments.

Show a summary per file
File Description
tests/aignostics/utils/service_test.py Adds tests for BaseService.get_service() caching/behavior and settings() accessor.
tests/aignostics/platform/service_test.py Updates platform service health test to async def + await.
src/aignostics/utils/_service.py Makes base API async; adds get_service() and settings().
src/aignostics/utils/CLAUDE.md Updates docs/examples for async services and DI helper.
src/aignostics/platform/_service.py Converts platform service health/info to async signature.
src/aignostics/system/_service.py Converts system service health_static/health/info to async and awaits discovered services.
src/aignostics/system/_gui.py Switches GUI health/info loading to await the async service methods.
src/aignostics/system/_cli.py Runs async health/info via asyncio.run(...) in CLI commands.
src/aignostics/application/_service.py Converts application service health/info to async signature.
src/aignostics/application/_cli.py Runs async system health check via asyncio.run(...) before submitting runs.
src/aignostics/application/_gui/_page_application_describe.py Updates GUI to call async system health (currently via asyncio.run).
src/aignostics/bucket/_service.py Converts bucket service health/info to async signature.
src/aignostics/dataset/_service.py Converts dataset service health/info to async signature.
src/aignostics/notebook/_service.py Converts notebook service health/info to async signature.
src/aignostics/qupath/_service.py Converts QuPath service health/info to async signature.
src/aignostics/wsi/_service.py Converts WSI service health/info to async signature.
src/aignostics/CLAUDE.md Updates root docs’ service examples to async signatures.

Comment on lines 305 to 307
# Check system health and determine if force option should be available
system_healthy = bool(SystemService.health_static())
system_healthy = bool(asyncio.run(SystemService.health_static()))
unhealthy_tooltip = None
Move SystemService.health_static() call from the sync inner function
_add_application_version_selection_section() to the outer async
_page_application_describe(), capturing the result via closure.

Also fix gui/_frame.py to await health_static() directly instead of
passing it to run.cpu_bound(), which ran the async function in a
subprocess with no event loop, causing "coroutine was never awaited".

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@codecov
Copy link

codecov bot commented Mar 13, 2026

❌ 2 Tests Failed:

Tests completed Failed Passed Skipped
731 2 729 15
View the top 2 failed test(s) by shortest run time
tests.aignostics.application.gui_test::test_gui_cli_submit_to_run_result_delete
Stack Traces | 1.34s run time
user = <nicegui.testing.user.User object at 0x7f0e8388c050>
runner = <typer.testing.CliRunner object at 0x7f0e8388c910>
silent_logging = None
record_property = <function record_property.<locals>.append_property at 0x7f0e82614b40>

    @pytest.mark.e2e
    @pytest.mark.long_running
    @pytest.mark.flaky(retries=2, delay=5, only_on=[AssertionError])
    @pytest.mark.timeout(timeout=60 * 5)
    @pytest.mark.sequential
    async def test_gui_cli_submit_to_run_result_delete(
        user: User,
        runner: CliRunner,
        silent_logging: None,
        record_property,
    ) -> None:
        """Test that the user can submit a run via the CLI up to deleting the run results."""
        record_property("tested-item-id", "SPEC-APPLICATION-SERVICE, SPEC-GUI-SERVICE")
    
        with tempfile.TemporaryDirectory() as tmpdir:
            tmp_path = Path(tmpdir)
            application = Service().application(HETA_APPLICATION_ID)
    
            # Submit run
            csv_content = (
                "external_id;checksum_base64_crc32c;resolution_mpp;width_px;height_px;staining_method;tissue;disease;"
            )
            csv_content += "platform_bucket_url\n"
            csv_content += ";5onqtA==;0.26268186053789266;7447;7196;H&E;LUNG;LUNG_CANCER;gs:.../bucket/test"
            csv_path = tmp_path / "dummy.csv"
            csv_path.write_text(csv_content)
            result = runner.invoke(
                cli,
                [
                    "application",
                    "run",
                    "submit",
                    HETA_APPLICATION_ID,
                    str(csv_path),
                    "--application-version",
                    HETA_APPLICATION_VERSION,
                    "--note",
                    "test_gui_cli_submit_to_run_result_delete",
                    "--tags",
                    "test_gui_cli_submit_to_run_result_delete",
                    "--deadline",
                    (datetime.now(tz=UTC) + timedelta(minutes=5)).isoformat(),
                    "--gpu-type",
                    PIPELINE_GPU_TYPE,
                ],
            )
>           assert result.exit_code == 0
E           AssertionError: assert 1 == 0
E            +  where 1 = <Result RuntimeError('asyncio.run() cannot be called from a running event loop')>.exit_code

.../aignostics/application/gui_test.py:124: AssertionError
tests.aignostics.application.gui_test::test_gui_download_dataset_via_application_to_run_cancel_to_find_back
Stack Traces | 19.3s run time
user = <nicegui.testing.user.User object at 0x7f0e825a2650>
runner = <typer.testing.CliRunner object at 0x7f0e825a2ea0>
silent_logging = None
record_property = <function record_property.<locals>.append_property at 0x7f0e916ebd70>

    @pytest.mark.e2e
    @pytest.mark.long_running
    @pytest.mark.flaky(retries=1, delay=5)
    @pytest.mark.timeout(timeout=60 * 10)
    @pytest.mark.sequential
    async def test_gui_download_dataset_via_application_to_run_cancel_to_find_back(  # noqa: PLR0915
        user: User, runner: CliRunner, silent_logging: None, record_property
    ) -> None:
        """Test that the user can download a dataset via the application page and cancel the run, then find it back."""
        record_property("tested-item-id", "TC-APPLICATION-GUI-04, SPEC-GUI-SERVICE")
        with tempfile.TemporaryDirectory() as tmpdir:
            tmp_path = Path(tmpdir)
    
            with patch(
                "aignostics.application._gui._page_application_describe.Path.home",
                return_value=tmp_path,
            ):
                # Download example wsi
                result = runner.invoke(
                    cli,
                    [
                        "dataset",
                        "aignostics",
                        "download",
                        SPOT_1_GS_URL,
                        str(tmp_path),
                    ],
                )
                assert result.exit_code == 0
                assert "Successfully downloaded" in normalize_output(result.stdout)
                assert SPOT_1_FILENAME in normalize_output(result.stdout)
                expected_file = Path(tmp_path) / SPOT_1_FILENAME
                assert expected_file.exists(), f"Expected file {expected_file} not found"
                assert expected_file.stat().st_size == 14681750
    
                # Open the GUI and navigate to Atlas H&E-TME application
                await user.open("/")
                await user.should_see("Applications")
                await user.should_see("Atlas H&E-TME", retries=100)
                await user.should_see(marker="SIDEBAR_APPLICATION:he-tme", retries=100)
                user.find(marker="SIDEBAR_APPLICATION:he-tme").click()
                await sleep(5)
                await user.should_see("The Atlas H&E TME is an AI application", retries=100)
    
                # Check the latest application version is shown and select it
                application = Service().application("he-tme")
                latest_application_version = application.versions[0] if application.versions else None
                assert latest_application_version is not None, "No application versions found for he-tme"
                await user.should_see(latest_application_version.number)
                with contextlib.suppress(AssertionError):
                    # Click force checkbox if system is unhealthy (checkbox only appears when unhealthy)
                    user.find(marker="CHECKBOX_FORCE").click()
>               user.find(marker="BUTTON_APPLICATION_VERSION_NEXT").click()
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.../aignostics/application/gui_test.py:231: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <nicegui.testing.user.User object at 0x7f0e825a2650>, target = None

    def find(self,
             target: str | type[T] | None = None,
             *,
             kind: type[T] | None = None,
             marker: str | list[str] | None = None,
             content: str | list[str] | None = None,
             ) -> UserInteraction[T]:
        """Select elements for interaction."""
        with self._client:
            elements = self._gather_elements(target, kind, marker, content)
            if not elements:
>               raise AssertionError('expected to find at least one ' +
                                     self._build_error_message(target, kind, marker, content))
E               AssertionError: expected to find at least one element with marker='BUTTON_APPLICATION_VERSION_NEXT' and content=None on the page:
E               q-layout
E                Header [model-value=True, elevated=True, add-scroll-padding=True]
E                 Link [href=/, target=_self]
E                  Image [src=/assets/logo.png]
E                  Tooltip [text=Go to start page]
E                 Space
E                 Icon [name=biotech]
E                  Tooltip [text=he-tme]
E                 Label [text=Atlas H&E-TME]
E                 Space
E                 DarkMode
E                 Button [icon=dark_mode, visible=False]
E                 RefreshableContainer
E                  Spinner [size=1em, thickness=5.0, flat=True]
E                 Button [icon=folder_special, flat=True]
E                  Tooltip [text=Open data directory...]
E                 Button [icon=menu, flat=True]
E                  Tooltip [text=Open menu]
E                LeftDrawer [model-value=True, side=left, elevated=True, breakpoint=0]
E                 List [bordered=True, separator=True]
E                  ItemLabel [text=Applications, header=True]
E                  Separator
E                  Item [markers=SIDEBAR_APPLICATION:he-tme, clickable=True]
E                   ItemSection [avatar=True]
E                    Icon [name=biotech]
E                     Tooltip [text=he-tme]
E                   ItemSection
E                    Label [text=Atlas H&E-TME]
E                  Item [markers=SIDEBAR_APPLICATION:test-app, clickable=True]
E                   ItemSection [avatar=True]
E                    Icon [name=construction]
E                     Tooltip [text=test-app]
E                   ItemSection
E                    Label [text=Test Application]
E                  Item [markers=SIDEBAR_APPLICATION:validation-app, clickable=True]
E                   ItemSection [avatar=True]
E                    Icon [name=bug_report]
E                     Tooltip [text=validation-app]
E                   ItemSection
E                    Label [text=validation-app]
E                 List [bordered=True, separator=True]
E                  Row
E                   ItemLabel [text=Runs, header=True]
E                   Input [markers=INPUT_RUNS_FILTER_NOTE_OR_TAGS, for=c53, placeholder=Filter by note or ta..., type=text, rounded=True, outlined=True, dense=True, clearable=True]
E                   RunFilterButton [markers=BUTTON_RUNS_FILTER_COMPLETED, name=done_all, size=sm]
E                    Tooltip [text=Show completed runs...]
E                  Separator
E                  RefreshableContainer
E                   ScrollArea [id=runs-list-container, content-style=padding-right: 0;]
E                    Column
E                     Item [markers=SIDEBAR_RUN_ITEM:0:6ec32515-a24d-42f7-abb9-585ed1b3aed5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:0, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:1:4dd91428-5e26-43d8-8927-e9a4950d9479, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:1, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:2:df590360-1147-4958-bd53-a51d7f921190, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=directions_run]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:2, text=he-tme (1.1.0)]
E                       Label [text=30 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:3:45159e97-c22c-453e-be22-58f265a087d8, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:3, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:4:9986ceb5-8635-4a28-bd61-75549e74c6cf, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:4, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:5:23eecc43-d12b-4001-a427-b16533772449, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:5, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:6:fdb81bc2-4e4a-42ba-beae-c9b1699b724c, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:6, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:7:da28fa16-c11a-4cd7-b5c7-952a8190357e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:7, text=he-tme (1.1.0)]
E                       Label [text=27 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:8:860edd4f-1911-4bd5-9215-0de5a28236ae, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=directions_run]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:8, text=he-tme (1.1.0)]
E                       Label [text=2 minutes, from 03-1...]
E                       Row
E                        Chip [text=cli-test, model-value=True, clickable=True]
E                        Chip [text=further-tag, model-value=True, clickable=True]
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:9:7e711ba8-4589-401f-b768-953485ea3569, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:9, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:10:da57b6ec-2c9a-4fd0-a997-2c968a818425, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:10, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:11:add1f33a-968f-42bb-aeae-d3afa2bcee36, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:11, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:12:a0dc2dd3-4a89-445a-846f-a82c0fdc0caf, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:12, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:13:11d6952c-fb15-48c5-810e-b97f6c994b76, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:13, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:14:b3bb3185-274f-40b7-8356-e042fda6e6e5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:14, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:15:40c0a538-c3af-4b91-916e-5d0025d17171, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:15, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:16:36f1561c-05b0-47e7-a542-355237f6eacc, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:16, text=he-tme (1.1.0)]
E                       Label [text=3 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:17:0e56d68b-b1a2-41b5-bcd0-8004f7560b92, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:17, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:18:8ed990c6-8f74-47c2-b0d2-fd932460b2f3, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:18, text=he-tme (1.1.0)]
E                       Label [text=11 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:19:65f8399e-47dc-4051-ad67-92f93e07d2bf, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:19, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:20:b53cdaf0-ca02-4d85-9022-d71daa3c69cc, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:20, text=he-tme (1.1.0)]
E                       Label [text=27 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:21:f24f83e0-f42d-41ff-8eab-6265d6f1aa26, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:21, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:22:9eaed31e-b346-4495-aae5-8e40ec6e5c51, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:22, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:23:37f0efa2-8ddf-4d5e-8363-3159dd0c1d03, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:23, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:24:7f50c1e2-dcf3-458c-afd5-439177d10b6b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:24, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:25:15daeff5-ffd1-4b45-8917-05307e03e5d5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:25, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:26:ed5d54f2-51bf-4566-93f3-17814859ccf4, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:26, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:27:d6e79999-196d-471c-91bf-f722ae1d75d5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:27, text=he-tme (1.1.0)]
E                       Label [text=26 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:28:bc425c83-05a5-45e0-a573-dccafbeda530, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:28, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:29:ab16d87e-7e1b-4ad3-a1c9-89cd6f89fe19, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:29, text=he-tme (1.1.0)]
E                       Label [text=27 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:30:4039596c-073a-4f74-bd4b-5be146166143, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:30, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:31:0e1d0bf8-3757-451a-adfa-f3e3a1c82e1d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:31, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:32:5212326e-5514-48f2-9baa-47c6470bd68b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:32, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:33:2efd61ef-7dd5-463d-aee7-c8b18ecdd9a4, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:33, text=he-tme (1.1.0)]
E                       Label [text=9 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:34:57e484db-fcbd-4633-ae23-48ff1ff696f0, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:34, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:35:e0319ce9-99fc-49f9-9a95-8067e7860496, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:35, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:36:bdb09cf9-7f86-4809-a5df-d10829cea932, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:36, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:37:355fc3e4-adeb-44eb-a734-9f9bd52c0301, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:37, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:38:a2dc670a-9bf7-482a-88ac-c020360713ff, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:38, text=he-tme (1.1.0)]
E                       Label [text=6 minutes, from 03-1...]
E                       Row
E                        Chip [text=cli-test, model-value=True, clickable=True]
E                        Chip [text=further-tag, model-value=True, clickable=True]
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:39:d922db1a-c2a2-4db4-86a4-0ba21d22975c, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:39, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:40:cd3fcab0-396b-44f0-aaa3-caf48fe08758, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:40, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:41:eb4e3d81-7274-4e38-afe6-6246072d2728, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:41, text=he-tme (1.1.0)]
E                       Label [text=6 minutes, from 03-1...]
E                       Row
E                        Chip [text=cli-test, model-value=True, clickable=True]
E                        Chip [text=further-tag, model-value=True, clickable=True]
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:42:5b9be0f8-8d7e-4467-9dae-7b13320e69c3, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:42, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:43:9dbce796-68b6-45ec-8be6-0babe8f55708, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:43, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:44:6a310517-1793-4326-81ed-fb5eee85d2fc, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:44, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:45:d0996506-20ce-4b46-8a33-9d363bb27968, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:45, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:46:3f5bcac3-1c33-499b-82c7-214e2cbb4a46, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:46, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:47:7a18347c-1ff7-4faa-93c2-d8012884a0e3, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:47, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:48:c8620179-61c1-43b0-8c9e-d1122150acf3, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:48, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:49:df9fee49-c7a5-4895-b63e-953f5b94cc4e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:49, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:50:dfe7dfe5-0f3c-4ac1-890f-81dac8224ae4, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:50, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:51:ac016fb9-7ab7-4d22-ba57-17dbe915f391, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:51, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:52:dc62fe2e-b018-4f87-af18-e5b0f942ea1f, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:52, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:53:cf4b5e55-64bb-4c1d-9265-8476e6b6d333, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:53, text=he-tme (1.1.0)]
E                       Label [text=7 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:54:aa78a21e-2165-4ac4-a3be-31d9323932dc, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:54, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:55:28fa540f-6b5f-463e-899f-4f49170267fb, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:55, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:56:980b202b-967a-4745-9825-abbe406a3ec5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:56, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:57:e695119c-c39b-42ff-afa4-f87f490f8107, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:57, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:58:b605efea-9902-4468-893e-52edda08363a, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:58, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:59:c3521b6b-2cd1-4d6a-888f-f7bcf426b2be, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:59, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:60:36a75a89-bb15-4cdb-b065-be7b53884912, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:60, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:61:c4bde21b-e9ff-4163-99a6-89d1ed4c87cf, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:61, text=he-tme (1.1.0)]
E                       Label [text=6 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:62:a46d9617-ec9d-46b9-8c4f-28d3ad7ef2a0, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:62, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:63:6f2fee83-79b1-41e0-b3d1-79fce50d4820, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:63, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:64:695f5a94-bb9d-4f2f-b31b-d326b29a4cca, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:64, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:65:df1c8d73-5b39-4b7c-a9d4-994fdc11019c, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:65, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:66:4ec2e593-5902-4e5a-b5ba-7568766bdac2, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:66, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:67:dd6d2f7d-b71c-4249-a122-1ea51852abc6, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:67, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:68:b7855bac-5a74-4cfb-bce7-72960ede8fea, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:68, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:69:6ac2429e-c077-4c56-9483-fb8b55436765, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:69, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:70:72565f08-61ca-4091-badd-bfe15eb66ed7, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:70, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:71:20439b54-6064-4557-b155-1e2222d41014, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:71, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:72:2f47665e-d3a8-474b-9927-dca028d9d1aa, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:72, text=he-tme (1.1.0)]
E                       Label [text=7 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:73:01ec9321-44a7-40f9-b3fb-5ec537f27236, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:73, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:74:17740183-2c39-4a32-bd03-ea6eaf0dc626, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:74, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:75:65c72c93-a2cd-4cd4-8948-87a3bff5a10f, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:75, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:76:ac8553dc-b0d0-4108-8a61-b49d45424aaf, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:76, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:77:d5fc3a87-461d-4d9d-8044-561d7c29179a, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:77, text=he-tme (1.1.0)]
E                       Label [text=9 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:78:df788434-1399-41fc-ae65-ee66d8ad77b9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:78, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:79:29106361-514f-4708-9caf-f104f2d44e91, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:79, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:80:d7939ff7-6e78-45eb-aa0d-5bba8b104483, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:80, text=he-tme (1.1.0)]
E                       Label [text=11 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:81:845a49cf-83cc-4441-874a-8182fad77895, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:81, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:82:8be364e1-3fc0-42c8-b1de-e05259120780, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:82, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:83:11c5f411-2c7a-48f4-a83a-e081d910aa95, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:83, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:84:97f9c554-0621-40ab-b1a3-703c649c196d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:84, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:85:8fc17259-84dc-464c-9ab7-9a136a422fe4, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:85, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:86:da89d19f-1cb1-4c2e-a4d9-9bda19aba292, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:86, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:87:bb4c1fbf-faaa-45e6-8912-6d6332e95fa4, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:87, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:88:f5c091d7-258e-4551-b599-26578c6bd4d5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:88, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:89:52563321-9bef-44b9-be70-8bc251724a50, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:89, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:90:c9381a2f-2439-43fa-917a-a06561a32512, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:90, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:91:5f26e2ef-02cf-4104-8c41-b7981ce7c7c0, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:91, text=he-tme (1.1.0)]
E                       Label [text=4 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:92:0ff0ab92-7f58-4845-9712-f2884b84d738, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:92, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:93:0b2fd881-b9f9-41a5-98af-a17d46b0f8c3, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:93, text=he-tme (1.1.0)]
E                       Label [text=12 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:94:b88199e2-82bf-47e0-a648-2478760acd81, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:94, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:95:1ae81219-33ee-430e-bc9b-ff647e1ed87c, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:95, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:96:ce057694-958e-4d12-9aa6-4b1f1823d86b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:96, text=he-tme (1.1.0)]
E                       Label [text=12 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:97:74f560c7-8e4f-4bb8-9e65-7a29a3eee4bd, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:97, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:98:2d28f100-e532-45d3-9ee7-6c6162088df5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:98, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:99:24791029-92c4-4dcb-b3b7-90723e323f4b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:99, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:100:d67f119c-4a61-4d9f-8d48-5fc7dae7f0e8, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:100, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:101:537208db-173d-42cc-aba1-8caa87f742d7, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:101, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:102:023eb4ae-10f4-4933-b4c0-75b3cfb5c31e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:102, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:103:4fb7fc85-fe78-4974-9dbc-ee5dc362086e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:103, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:104:c00ba3fd-c186-4f1e-b8d1-af0b7e4a3827, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:104, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:105:05403258-d8d2-4362-8068-63a0d4b2672c, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:105, text=he-tme (1.1.0)]
E                       Label [text=7 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:106:77dc5191-192b-41e6-a5bd-34365c20f5ee, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:106, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:107:ee8a5d56-4ccc-4e15-891f-5b1262156691, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:107, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:108:e7ee8cd1-11f9-4dff-bdcd-e77702a4398e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:108, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:109:11f806f2-f4f1-48f1-a541-08d3092543da, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:109, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:110:0b81a49a-76a0-49b2-b40d-0219f6fb8601, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:110, text=he-tme (1.1.0)]
E                       Label [text=7 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:111:b48846e5-5b1a-479a-888d-cb062e0af861, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:111, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:112:f78b677d-f4e9-4f7e-96cc-826faead3f3a, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:112, text=he-tme (1.1.0)]
E                       Label [text=5 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_tag1, model-value=True, clickable=True]
E                        Chip [text=test_gui_tag2, model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:113:fad155bb-76fd-4847-90f9-518143e9f2ee, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:113, text=he-tme (1.1.0)]
E                       Label [text=4 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_cli_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:114:770233ba-ea95-413b-9f12-3aab64243714, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:114, text=he-tme (1.1.0)]
E                       Label [text=5 minutes, from 03-1...]
E                       Row
E                        Chip [text=cli-test, model-value=True, clickable=True]
E                        Chip [text=further-tag, model-value=True, clickable=True]
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:115:1f13de91-5981-48ba-aba9-94104c5fa702, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:115, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:116:aa503c1d-ac4e-456c-b1e2-66c72e5fa338, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:116, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:117:93d8f087-e94c-4497-afc2-da6756461c47, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:117, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:118:d9f8d0ba-a71d-443d-abf4-3659abe9c5b5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:118, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:119:14df9151-b4cf-4abb-8ab2-2e6dad0dfbf9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:119, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:120:1cdd3f04-7aa5-462c-8747-26cb51229239, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:120, text=he-tme (1.1.0)]
E                       Label [text=9 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:121:245b2569-4ebc-48f1-b5e8-6a74c253360d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:121, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:122:bd770196-3ee3-427a-bd02-b196cbcc4acd, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:122, text=he-tme (1.1.0)]
E                       Label [text=3 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:123:c63721b3-6031-4b31-a2d2-cc9d31ed4ab5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:123, text=he-tme (1.1.0)]
E                       Label [text=3 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:124:256f5e6b-bfaf-4bec-83d2-cdb4fa8ff724, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:124, text=he-tme (1.1.0)]
E                       Label [text=5 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_tag1, model-value=True, clickable=True]
E                        Chip [text=test_gui_tag2, model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:125:687a7ce8-41ef-4580-b3be-66e1059c99f6, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:125, text=he-tme (1.1.0)]
E                       Label [text=4 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_cli_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:126:3e671cab-b33e-48c2-a8f5-1a09e9e8b531, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:126, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:127:bfa83a54-e8f7-409b-83bb-25f91af1bb1a, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:127, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:128:f27582cb-12c1-413b-8335-77244be2a478, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:128, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:129:16892781-ff6e-41cc-8e8d-980f965b157e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:129, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:130:57a222ae-ca7d-4b15-83fc-456b50906fb6, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:130, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:131:930c0589-77af-4f38-973d-dd533d791481, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [value=1, max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=sports_score]
E                         Tooltip [text=1 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:131, text=he-tme (1.1.0)]
E                       Label [text=26 minutes, from 03-...]
E                       Row
E                        Chip [text=find_and_validate:3_..., model-value=True, clickable=True]
E                        Chip [text=scheduled, model-value=True, clickable=True]
E                        Chip [text=test_platform_heta_a..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:132:b37d8c07-1b7b-457c-9e33-c5ff6a9c313b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:132, text=he-tme (1.1.0)]
E                       Label [text=5 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_tag1, model-value=True, clickable=True]
E                        Chip [text=test_gui_tag2, model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:133:6fb07c5e-2007-406d-8a9a-a932a7ce9db9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [value=3, max=3, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=sports_score]
E                         Tooltip [text=3 of 3 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:133, text=test-app (0.0.6)]
E                       Label [text=2 minutes, from 03-1...]
E                       Row
E                        Chip [text=find_and_validate:3_..., model-value=True, clickable=True]
E                        Chip [text=scheduled, model-value=True, clickable=True]
E                        Chip [text=test_platform_test_a..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:134:bb5ec8cc-9a6f-4e46-9fb2-e9cd4d53d04d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:134, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_cli_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:135:c223e6bb-f376-42a3-acb1-2aafff91b4e9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:135, text=he-tme (1.1.0)]
E                       Label [text=3 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:136:f885f4c3-df33-461e-a04d-24183be1f382, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:136, text=he-tme (1.1.0)]
E                       Label [text=27 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:137:6f20e8c1-3d3e-4cd3-a3b3-0c56eeab9689, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:137, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:138:6acef6c4-04d2-4164-90d6-bb4f89714001, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:138, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:139:b732cd3e-70cc-4048-9484-d4436f892e54, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:139, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:140:8a23c79e-4f8a-4622-9ac3-49abc41f66a9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:140, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:141:bf4949f6-9d78-492c-8520-660781fa252e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:141, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:142:9b464951-1671-41a4-a8ce-3e3381a87d29, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:142, text=he-tme (1.1.0)]
E                       Label [text=5 minutes, from 03-1...]
E                       Row
E                        Chip [text=cli-test, model-value=True, clickable=True]
E                        Chip [text=further-tag, model-value=True, clickable=True]
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:143:9ecd9693-7b9c-41e1-9737-ec4b9332b6c2, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:143, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:144:4855618b-6a31-4db8-bf67-f0657fdd1b7d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:144, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:145:c1b3ff7a-aab6-4e21-b9f1-afab807d3fb9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:145, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:146:c978d7d0-9991-42de-9820-b1ea9dec64a8, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:146, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:147:a6dc9779-65b1-4a65-8d3e-2bafa644800f, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:147, text=he-tme (1.1.0)]
E                       Label [text=6 minutes, from 03-1...]
E                       Row
E                        Chip [text=cli-test, model-value=True, clickable=True]
E                        Chip [text=further-tag, model-value=True, clickable=True]
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:148:619da9fd-a1f9-4312-a545-176370c84a92, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:148, text=he-tme (1.1.0)]
E                       Label [text=5 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_tag1, model-value=True, clickable=True]
E                        Chip [text=test_gui_tag2, model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:149:78be0728-578f-42e7-8a97-ec5aa50a2d0c, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:149, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:150:f2c66e32-3cd4-49e3-90b4-868694cf9f74, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:150, text=he-tme (1.1.0)]
E                       Label [text=a second, from 03-13...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:151:8fa62aff-6874-4a9e-b7cb-f5b6cd62947b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:151, text=he-tme (1.1.0)]
E                       Label [text=3 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_cli_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:152:979de123-f72e-4ece-9702-fb2ed408130c, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:152, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:153:04143d26-ca7d-46b9-83ee-f1dc42a2c1c0, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:153, text=he-tme (1.1.0)]
E                       Label [text=9 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:154:dd51dbad-3a88-428f-b475-6102ff75027f, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:154, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:155:3d40303c-5467-476d-8516-39d17eb0c114, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:155, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:156:08d7fa99-bdf8-4114-943e-cc252a3ef162, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:156, text=he-tme (1.1.0)]
E                       Label [text=3 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:157:f70999e9-c6f3-4c28-9d6a-88900bf1dbc1, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:157, text=he-tme (1.1.0)]
E                       Label [text=27 seconds, from 03-...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:158:555ab3ce-429e-448a-8421-d627265a1e9f, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:158, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:159:24265045-4ffe-48e2-b9fb-6bb3d4db5cc9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:159, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:160:1af13ccc-4dcb-424a-a5d5-3f9e2846dea6, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:160, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:161:ba1fdfea-7483-49ce-88fc-272436ab2152, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:161, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:162:c29b5948-43f2-43f5-8cdb-74ba271d4a0a, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:162, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:163:14a88c86-8017-4093-a50c-bed9918ba452, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:163, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:164:fe07c033-b57f-4462-8119-f722765f4ee8, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:164, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:165:8e331324-901c-46aa-bc12-753f5cee786e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:165, text=he-tme (1.1.0)]
E                       Label [text=8 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:166:056c4c65-0cf5-4ae3-8722-5d959d5317cb, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:166, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:167:b90fa72f-809e-4351-99f7-e87a16361f24, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:167, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:168:9715905c-44af-4126-bc92-f84fce28e06e, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:168, text=he-tme (1.1.0)]
E                       Label [text=5 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_tag1, model-value=True, clickable=True]
E                        Chip [text=test_gui_tag2, model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:169:d20b1592-0f74-4d26-83b8-d801d1499e94, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:169, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:170:768b8d05-0b49-45f7-acca-ba7d61684a3d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:170, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_gui_cli_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:171:d8d57125-6ae2-4e0e-9fe0-3a2119891ab0, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:171, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:172:ea61f675-4b9f-4fd2-a2fc-56f7e023bf24, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:172, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:173:39b4a333-5cbe-4066-9dc7-46be9f5e305f, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:173, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:174:eaa621ae-48a8-4cff-88dc-4e9008f95010, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:174, text=he-tme (1.1.0)]
E                       Label [text=8 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:175:21690159-761f-44ca-867b-9f8587445a16, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:175, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:176:d3773ef3-1569-47f1-8e21-54df9b317db5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:176, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:177:0b8e2f96-5818-46cc-9732-113b804ddcda, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:177, text=he-tme (1.1.0)]
E                       Label [text=27 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:178:ff469d32-57bd-4268-abb4-0fcbc4ac915f, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:178, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:179:4d5b5006-1d39-4d38-bf14-4685f588e8f4, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:179, text=he-tme (1.1.0)]
E                       Label [text=10 seconds, from 03-...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:180:0ea3f6a6-febb-435f-8de8-08c71d0719b2, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:180, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:181:9c12d0dc-bc17-4ef7-81db-956610081b8b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:181, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:182:0058acf6-2966-4710-864d-1e9a964dc6ed, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:182, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:183:0e9d8ee3-7bb9-4ecb-b903-a896f94fdca5, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:183, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:184:fee9927c-ce43-4043-8b8e-28e51c5d72c6, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:184, text=he-tme (1.1.0)]
E                       Label [text=26 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:185:d3f1005a-81e7-4644-8b18-69c756301de7, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:185, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:186:c8c7d889-c410-4a62-b621-f1086a6c9b72, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:186, text=he-tme (1.1.0)]
E                       Label [text=27 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:187:d9c95196-f6cf-4969-8793-647130b2e957, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:187, text=he-tme (1.1.0)]
E                       Label [text=5 minutes, from 03-1...]
E                       Row
E                        Chip [text=cli-test, model-value=True, clickable=True]
E                        Chip [text=further-tag, model-value=True, clickable=True]
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:188:4dcea0ec-e7ce-4588-a77b-e1088eb102f1, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:188, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:189:a3036203-115a-4a19-b2ce-01a900e9769b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:189, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:190:99236915-3cca-4b0c-ae4f-5b798a417ae8, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:190, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:191:710fa594-711f-4750-87be-ef5c91756e3d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:191, text=he-tme (1.1.0)]
E                       Label [text=7 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:192:1733be5c-60b7-49a6-849c-3b66e7560684, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:192, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:193:5a4d09b2-b5ec-4e87-aa93-f60614d37cf1, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:193, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:194:a9be511d-112f-46e6-8ec7-019c06c107ed, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:194, text=he-tme (1.1.0)]
E                       Label [text=9 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_json_format_177..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:195:2193b21c-9051-4089-844d-effceca3c9f9, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:195, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                     Item [markers=SIDEBAR_RUN_ITEM:196:718a753d-3918-49a7-aaca-136d7c90651a, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:196, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:197:150653a2-4de2-40fa-b600-13441f88c4ca, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:197, text=he-tme (1.1.0)]
E                       Label [text=2 seconds, from 03-1...]
E                       Row
E                        Chip [text=test_item_metadata_1..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:198:b7673381-de5d-4340-8008-2a28ab864c8d, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=error]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:198, text=he-tme (1.1.0)]
E                       Label [text=a moment, from 03-13...]
E                       Row
E                        Chip [text=test_cli_run_submit_..., model-value=True, clickable=True]
E                     Item [markers=SIDEBAR_RUN_ITEM:199:40112976-131e-4c33-9dbc-c4485b342c3b, clickable=True]
E                      ItemSection [avatar=True]
E                       CircularProgress [max=1, size=xl, show-value=True, track-color=grey-4]
E                        Icon [name=cancel]
E                         Tooltip [text=0 of 1 succeeded, st...]
E                      ItemSection
E                       Label [markers=LABEL_RUN_APPLICATION:199, text=he-tme (1.1.0)]
E                       Label [text=26 seconds, from 03-...]
E                       Row
E                        Chip [text=test_metadata_177339..., model-value=True, clickable=True]
E                  Timer
E                q-page-container
E                 q-page
E                  div
E                   Spinner [size=xl, thickness=5.0, visible=False]
E                   Colors [primary=#1C1242, secondary=#B9B1DF, accent=#111B1E, dark=#1d1d1d1d, dark-page=#12121212, positive=#0CA57B, negative=#D4313C, info=#261C8D, warning=#FFCC00, custom-colors={'success': '#0CA57B...]
E                   DarkMode
E                   Timer
E                   Timer
E                   QueryElement [selector=body, classes=['bg-aignostics-ligh...]
E                   div [visible=False]
E                   Row
E                    Column
E                     Expansion [label=Atlas H&E-TME, icon=info]
E                      Markdown [content=The Atlas H&E TME is..., sanitize=True, resource-name=codehilite_821444cf7...]
E                    Space
E                    Row
E                     Button [label=Release Notes, icon=change_history]
E                      Tooltip [text=Show change notes of...]
E                     Link [href=https://www.fda.gov/..., target=_blank]
E                      Image [src=/application_assets/...]
E                   div [visible=False]
E                   Stepper [model-value=Select Application V..., keep-alive=True, vertical=True]
E                    Step [name=Select Application V..., title=Select Application V..., :done=False]
E                     Row
E                      Column
E                       Label [text=Select the version o...]
E                       Select [model-value={'value': 0, 'label'..., options=[{'value': 0, 'label...]
E                      Space
E                      Column
E                       Button [icon=info]
E                        Tooltip [text=Show changes and inp...]
E                     StepperNavigation
E                   q-layout
E                    Header [model-value=True, elevated=True, add-scroll-padding=True]
E                     Link [href=/, target=_self]
E                      Image [src=/assets/logo.png]
E                      Tooltip [text=Go to start page]
E                     Space
E                     Label [text=Error]
E                     Space
E                     DarkMode
E                     Button [icon=dark_mode, visible=False]
E                     RefreshableContainer
E                      Spinner [size=1em, thickness=5.0, flat=True]
E                     Button [icon=folder_special, flat=True]
E                      Tooltip [text=Open data directory...]
E                     Button [icon=menu, flat=True]
E                      Tooltip [text=Open menu]
E                    q-page-container
E                     q-page
E                      div
E                       Colors [primary=#1C1242, secondary=#B9B1DF, accent=#111B1E, dark=#1d1d1d1d, dark-page=#12121212, positive=#0CA57B, negative=#D4313C, info=#261C8D, warning=#FFCC00, custom-colors={'success': '#0CA57B...]
E                       DarkMode
E                       Timer
E                       Timer
E                       QueryElement [selector=body, classes=['bg-aignostics-ligh...]
E                       Row
E                        Column
E                         Column
E                          Label [text=asyncio.run() cannot...]
E                          Code [content=Traceback (most rece..., content=Traceback (most rece...]
E                           Markdown [content=```python Traceback..., sanitize=True, resource-name=codehilite_821444cf7...]
E                           Button [icon=content_copy, round=True, flat=True, size=sm]
E                           Timer
E                        Column
E                         Html [content=<dotlottie-player sr..., tag=div]
E                    RightDrawer [side=right]
E                     Column
E                      List
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=biotech]
E                        ItemSection
E                         Label [text=Run Applications]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=image]
E                        ItemSection
E                         Label [text=Download Datasets]
E                      Space
E                      List
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=visibility]
E                        ItemSection
E                         Label [text=QuPath Extension]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=difference]
E                        ItemSection
E                         Label [text=Marimo Extension]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=cloud]
E                        ItemSection
E                         Label [text=Manage Cloud Bucket]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         RefreshableContainer
E                        ItemSection
E                         Label [text=Info and Settings]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=domain]
E                        ItemSection
E                         Link [markers=LINK_PLATFORM, text=Go to Console, href=https://platform.aig..., target=_blank]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=local_library]
E                        ItemSection
E                         Link [markers=LINK_DOCUMENTATION, text=Read The Docs, href=https://aignostics.r..., target=_blank]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=help]
E                        ItemSection
E                         Link [markers=LINK_DOCUMENTATION, text=Get Support, href=https://platform.aig..., target=_blank]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=check_circle]
E                        ItemSection
E                         Link [markers=LINK_DOCUMENTATION, text=Check Platform Statu..., href=https://status.aigno..., target=_blank]
E                       Item [clickable=True]
E                        ItemSection [avatar=True]
E                         Icon [name=handshake]
E                        ItemSection
E                         Link [markers=LINK_ATTRIBUTIONS, text=Attributions, href=https://aignostics.r..., target=_blank]
E                    Footer [model-value=True]
E                     Row
E                      RefreshableContainer
E                       Link [href=/system, target=_self]
E                        Row
E                         Tooltip [text=Check Launchpad Stat...]
E                         Spinner [size=1em, thickness=5.0]
E                      Row
E                       Html [content=<iframe id="betterst..., tag=div]
E                       Tooltip [text=Check Platform Statu...]
E                      Space
E                      Row
E                       Html [content=#x1F52C<a style="color: bl..., tag=div]
E                       Tooltip [text=Visit GitHub reposit...]
E                RightDrawer [model-value=True, side=right]
E                 Column
E                  List
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=biotech]
E                    ItemSection
E                     Label [text=Run Applications]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=image]
E                    ItemSection
E                     Label [text=Download Datasets]
E                  Space
E                  List
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=visibility]
E                    ItemSection
E                     Label [text=QuPath Extension]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=difference]
E                    ItemSection
E                     Label [text=Marimo Extension]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=cloud]
E                    ItemSection
E                     Label [text=Manage Cloud Bucket]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     RefreshableContainer
E                    ItemSection
E                     Label [text=Info and Settings]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=domain]
E                    ItemSection
E                     Link [markers=LINK_PLATFORM, text=Go to Console, href=https://platform.aig..., target=_blank]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=local_library]
E                    ItemSection
E                     Link [markers=LINK_DOCUMENTATION, text=Read The Docs, href=https://aignostics.r..., target=_blank]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=help]
E                    ItemSection
E                     Link [markers=LINK_DOCUMENTATION, text=Get Support, href=https://platform.aig..., target=_blank]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=check_circle]
E                    ItemSection
E                     Link [markers=LINK_DOCUMENTATION, text=Check Platform Statu..., href=https://status.aigno..., target=_blank]
E                   Item [clickable=True]
E                    ItemSection [avatar=True]
E                     Icon [name=handshake]
E                    ItemSection
E                     Link [markers=LINK_ATTRIBUTIONS, text=Attributions, href=https://aignostics.r..., target=_blank]
E                Footer [model-value=True]
E                 Row
E                  RefreshableContainer
E                   Link [href=/system, target=_self]
E                    Row
E                     Tooltip [text=Check Launchpad Stat...]
E                     Spinner [size=1em, thickness=5.0]
E                  Row
E                   Html [content=<iframe id="betterst..., tag=div]
E                   Tooltip [text=Check Platform Statu...]
E                  Space
E                  Row
E                   Html [content=#x1F52C<a style="color: bl..., tag=div]
E                   Tooltip [text=Visit GitHub reposit...]
E                Dialog
E                 Card
E                  Label [text=Release notes of Atl...]
E                  ScrollArea
E                   Label [text=Version 1.1.0]
E                   Markdown [content=## HETA Changelog -..., sanitize=True, resource-name=codehilite_821444cf7...]
E                   Label [text=Version 1.0.0]
E                   Markdown [content=## HETA Changelog -..., sanitize=True, resource-name=codehilite_821444cf7...]
E                  Row
E                   Column
E                    Button [label=Close]
E                Dialog
E                 Card
E                  RefreshableContainer
E                   ScrollArea
E                    Label [text=Latest changes in v1...]
E                    Markdown [content=## HETA Changelog -..., sanitize=True, resource-name=codehilite_821444cf7...]
E                    Label [text=Expected Input Artif...]
E                    Expansion [label=whole_slide_image, icon=image]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Label [text=Generated output art...]
E                    Expansion [label=tissue_qc:geojson_po..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=tissue_qc:segmentati..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=cell_classification:..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=readout_generation:c..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=readout_generation:s..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=tissue_segmentation:..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=tissue_segmentation:..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=tissue_qc:csv_class_..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                    Expansion [label=tissue_segmentation:..., icon=image]
E                     Label [text=Scope: OutputArtifac...]
E                     Label [text=Mime Type: image/tif...]
E                     Label [text=Metadata]
E                     JsonEditor [properties={'content': {'json':...]
E                  Row
E                   Column
E                    Button [label=Close]

..../test-3-14-1/lib/python3.14.../nicegui/testing/user.py:219: AssertionError

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants