├── .gitattributes ├── .github └── workflows │ ├── linting.yml │ ├── release-robotframework-output-stream.yaml │ └── tests-robot-out-stream.yml ├── .gitignore ├── .project ├── .pydevproject ├── .settings ├── org.eclipse.core.resources.prefs ├── org.python.pydev.analysis.yaml └── org.python.pydev.yaml ├── COPYRIGHT ├── LICENSE ├── README.md ├── dev.py ├── dev_requirements.txt ├── docs ├── arguments.md ├── changelog.md ├── format.md ├── handling_sensitive_data.md └── release.md ├── output-webview ├── package.json ├── src │ ├── debounce.ts │ ├── decoder.ts │ ├── handleLevel.ts │ ├── handleStatus.ts │ ├── index.html │ ├── index.ts │ ├── options.ts │ ├── persistTree.ts │ ├── plainDom.ts │ ├── protocols.ts │ ├── runSelection.ts │ ├── sample.ts │ ├── style.css │ ├── summaryBuilder.ts │ ├── tree.ts │ ├── treeBuilder.ts │ └── vscodeComm.ts ├── tests │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── _resources │ │ ├── case1.rfstream │ │ ├── case2.rfstream │ │ ├── case3.rfstream │ │ ├── case4.rfstream │ │ ├── case5.rfstream │ │ └── scenario_generator.robot │ ├── conda.yaml │ ├── robot.yaml │ ├── test_output_view.robot │ ├── tests.ts │ └── uris.py ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── pyproject.toml ├── src ├── robot_out_stream │ ├── __init__.py │ ├── _decoder.py │ ├── _impl.py │ ├── index.py │ ├── py.typed │ ├── robot_version.py │ └── xml_to_rfstream.py └── setup.py └── tests ├── .gitignore ├── conftest.py ├── robot_out_stream_tests ├── __init__.py ├── _resources │ └── robot1.robot ├── fixtures.py ├── test_decode_xml.py ├── test_decode_xml │ ├── output_1.xml │ ├── output_10.xml │ ├── output_11.xml │ ├── output_2.xml │ ├── output_3.xml │ ├── output_4.xml │ ├── output_5.xml │ ├── output_6.xml │ ├── output_7.xml │ ├── output_8.xml │ ├── output_9.xml │ ├── test_decode_output_1.yml │ ├── test_decode_output_10.yml │ ├── test_decode_output_11.yml │ ├── test_decode_output_2.yml │ ├── test_decode_output_3.yml │ ├── test_decode_output_4.yml │ ├── test_decode_output_5.yml │ ├── test_decode_output_6.yml │ ├── test_decode_output_7.yml │ ├── test_decode_output_8.yml │ └── test_decode_output_9.yml ├── test_impl_recovery.py ├── test_output_as_logthtml.py ├── test_robot_stream.py ├── test_robot_stream │ ├── .vscode │ │ └── launch.json │ ├── another.robot │ ├── interactive_console_output.xml │ ├── robot1.robot │ ├── robot10.robot │ ├── robot11.robot │ ├── robot2.robot │ ├── robot3.robot │ ├── robot4.robot │ ├── robot5.robot │ ├── robot6.robot │ ├── robot7.robot │ ├── robot8.robot │ ├── robot9.robot │ ├── robot_nolog.robot │ ├── robot_nolog_args_by_name.robot │ ├── robot_nolog_args_by_tag.robot │ ├── robot_nolog_arguments.robot │ ├── robot_nolog_by_tag.robot │ ├── robot_nolog_try_except.robot │ ├── sub │ │ └── another_sub.robot │ ├── test_robot_assign.yml │ ├── test_robot_embed_img.yml │ ├── test_robot_if.yml │ ├── test_robot_no_log.yml │ ├── test_robot_no_log_args.yml │ ├── test_robot_no_log_args_by_name.yml │ ├── test_robot_no_log_args_by_tag.yml │ ├── test_robot_no_log_by_tag.yml │ ├── test_robot_no_log_try_except.yml │ ├── test_robot_return.yml │ ├── test_robot_stream_unexpected_errors.yml │ ├── test_robot_tags.yml │ ├── test_robot_try_except.yml │ └── test_robot_while.yml ├── test_utilities.py ├── test_utilities │ └── test_gen_id.yml └── test_view_integrated.py └── test_requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/release-robotframework-output-stream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.github/workflows/release-robotframework-output-stream.yaml -------------------------------------------------------------------------------- /.github/workflows/tests-robot-out-stream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.github/workflows/tests-robot-out-stream.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.pydevproject -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.python.pydev.analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.settings/org.python.pydev.analysis.yaml -------------------------------------------------------------------------------- /.settings/org.python.pydev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/.settings/org.python.pydev.yaml -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/README.md -------------------------------------------------------------------------------- /dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/dev.py -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /docs/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/docs/arguments.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/docs/format.md -------------------------------------------------------------------------------- /docs/handling_sensitive_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/docs/handling_sensitive_data.md -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/docs/release.md -------------------------------------------------------------------------------- /output-webview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/package.json -------------------------------------------------------------------------------- /output-webview/src/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/debounce.ts -------------------------------------------------------------------------------- /output-webview/src/decoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/decoder.ts -------------------------------------------------------------------------------- /output-webview/src/handleLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/handleLevel.ts -------------------------------------------------------------------------------- /output-webview/src/handleStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/handleStatus.ts -------------------------------------------------------------------------------- /output-webview/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/index.html -------------------------------------------------------------------------------- /output-webview/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/index.ts -------------------------------------------------------------------------------- /output-webview/src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/options.ts -------------------------------------------------------------------------------- /output-webview/src/persistTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/persistTree.ts -------------------------------------------------------------------------------- /output-webview/src/plainDom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/plainDom.ts -------------------------------------------------------------------------------- /output-webview/src/protocols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/protocols.ts -------------------------------------------------------------------------------- /output-webview/src/runSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/runSelection.ts -------------------------------------------------------------------------------- /output-webview/src/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/sample.ts -------------------------------------------------------------------------------- /output-webview/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/style.css -------------------------------------------------------------------------------- /output-webview/src/summaryBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/summaryBuilder.ts -------------------------------------------------------------------------------- /output-webview/src/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/tree.ts -------------------------------------------------------------------------------- /output-webview/src/treeBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/treeBuilder.ts -------------------------------------------------------------------------------- /output-webview/src/vscodeComm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/src/vscodeComm.ts -------------------------------------------------------------------------------- /output-webview/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/.gitignore -------------------------------------------------------------------------------- /output-webview/tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/LICENSE -------------------------------------------------------------------------------- /output-webview/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/README.md -------------------------------------------------------------------------------- /output-webview/tests/_resources/case1.rfstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/_resources/case1.rfstream -------------------------------------------------------------------------------- /output-webview/tests/_resources/case2.rfstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/_resources/case2.rfstream -------------------------------------------------------------------------------- /output-webview/tests/_resources/case3.rfstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/_resources/case3.rfstream -------------------------------------------------------------------------------- /output-webview/tests/_resources/case4.rfstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/_resources/case4.rfstream -------------------------------------------------------------------------------- /output-webview/tests/_resources/case5.rfstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/_resources/case5.rfstream -------------------------------------------------------------------------------- /output-webview/tests/_resources/scenario_generator.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/_resources/scenario_generator.robot -------------------------------------------------------------------------------- /output-webview/tests/conda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/conda.yaml -------------------------------------------------------------------------------- /output-webview/tests/robot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/robot.yaml -------------------------------------------------------------------------------- /output-webview/tests/test_output_view.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/test_output_view.robot -------------------------------------------------------------------------------- /output-webview/tests/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/tests.ts -------------------------------------------------------------------------------- /output-webview/tests/uris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tests/uris.py -------------------------------------------------------------------------------- /output-webview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/tsconfig.json -------------------------------------------------------------------------------- /output-webview/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/webpack.config.js -------------------------------------------------------------------------------- /output-webview/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/output-webview/yarn.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/robot_out_stream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/src/robot_out_stream/__init__.py -------------------------------------------------------------------------------- /src/robot_out_stream/_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/src/robot_out_stream/_decoder.py -------------------------------------------------------------------------------- /src/robot_out_stream/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/src/robot_out_stream/_impl.py -------------------------------------------------------------------------------- /src/robot_out_stream/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/src/robot_out_stream/index.py -------------------------------------------------------------------------------- /src/robot_out_stream/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/robot_out_stream/robot_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/src/robot_out_stream/robot_version.py -------------------------------------------------------------------------------- /src/robot_out_stream/xml_to_rfstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/src/robot_out_stream/xml_to_rfstream.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/src/setup.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /out_test/ 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/_resources/robot1.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/_resources/robot1.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/fixtures.py -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml.py -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_1.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_10.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_11.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_2.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_3.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_4.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_5.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_6.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_7.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_8.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/output_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/output_9.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_1.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_10.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_11.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_2.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_3.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_4.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_5.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_6.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_7.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_8.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_decode_xml/test_decode_output_9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_decode_xml/test_decode_output_9.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_impl_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_impl_recovery.py -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_output_as_logthtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_output_as_logthtml.py -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream.py -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/.vscode/launch.json -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/another.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/another.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/interactive_console_output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/interactive_console_output.xml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot1.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot1.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot10.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot10.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot11.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot11.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot2.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot2.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot3.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot3.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot4.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot4.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot5.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot5.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot6.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot6.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot7.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot7.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot8.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot8.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot9.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot9.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot_nolog.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot_nolog.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot_nolog_args_by_name.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot_nolog_args_by_name.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot_nolog_args_by_tag.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot_nolog_args_by_tag.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot_nolog_arguments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot_nolog_arguments.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot_nolog_by_tag.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot_nolog_by_tag.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/robot_nolog_try_except.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/robot_nolog_try_except.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/sub/another_sub.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/sub/another_sub.robot -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_assign.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_embed_img.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_embed_img.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_if.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_if.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_args.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_args.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_args_by_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_args_by_name.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_args_by_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_args_by_tag.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_by_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_by_tag.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_try_except.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_no_log_try_except.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_return.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_return.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_stream_unexpected_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_stream_unexpected_errors.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_tags.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_try_except.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_try_except.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_robot_stream/test_robot_while.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_robot_stream/test_robot_while.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_utilities.py -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_utilities/test_gen_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_utilities/test_gen_id.yml -------------------------------------------------------------------------------- /tests/robot_out_stream_tests/test_view_integrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/robot_out_stream_tests/test_view_integrated.py -------------------------------------------------------------------------------- /tests/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robocorp/robotframework-output-stream/HEAD/tests/test_requirements.txt --------------------------------------------------------------------------------