From eab7412e8881b0564b5c5096af293668742d67ec Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Sun, 2 Oct 2022 12:16:41 +0200 Subject: [PATCH 1/9] Add annotation to expected files --- .../junit-xml/junit.multiresult.annotations | 79 + .../junit-xml/minimal-attributes.annotations | 70 + .../files/junit-xml/no-attributes.annotations | 31 + .../junit-xml/no-cases-but-tests.annotations | 30 + .../test/files/junit-xml/no-cases.annotations | 29 + .../files/junit-xml/non-junit.annotations | 39 + .../junit-xml/pytest/junit.fail.annotations | 74 + .../pytest/junit.gloo.elastic.annotations | 87 + .../junit.gloo.elastic.spark.tf.annotations | 103 + ...junit.gloo.elastic.spark.torch.annotations | 84 + .../pytest/junit.gloo.standalone.annotations | 179 + .../pytest/junit.gloo.static.annotations | 123 + .../pytest/junit.mpi.integration.annotations | 44 + .../pytest/junit.mpi.standalone.annotations | 163 + .../pytest/junit.mpi.static.annotations | 88 + .../junit.spark.integration.1.annotations | 109 + .../junit.spark.integration.2.annotations | 109 + ...ch.spark.diff.DiffOptionsSuite.annotations | 49 + .../testsuite-in-testsuite.annotations | 42 + .../files/junit-xml/tst/disabled.annotations | 240 + .../junit-xml/unsupported-unicode.annotations | 95 + .../junit-xml/with-xml-entities.annotations | 76 + .../files/junit-xml/xunit/xunit.annotations | 41 + .../nunit/mstest/clicketyclackety.annotations | 159 + .../files/nunit/mstest/pickles.annotations | 79 + .../nunit3/jenkins/NUnit-correct.annotations | 115 + .../nunit3/jenkins/NUnit-correct2.annotations | 482 ++ .../nunit3/jenkins/NUnit-correct3.annotations | 67 + .../nunit3/jenkins/NUnit-failure.annotations | 59 + .../jenkins/NUnit-healthReport.annotations | 65 + .../nunit3/jenkins/NUnit-ignored.annotations | 56 + .../jenkins/NUnit-issue1077.annotations | 45 + .../jenkins/NUnit-issue33493.annotations | 57 + .../jenkins/NUnit-issue44527.annotations | 4542 +++++++++++++++++ .../jenkins/NUnit-issue48478.annotations | 40 + .../jenkins/NUnit-issue50162.annotations | 82 + .../jenkins/NUnit-issue5674.annotations | 88 + .../jenkins/NUnit-issue6353.annotations | 59 + .../jenkins/NUnit-multinamespace.annotations | 44 + .../jenkins/NUnit-sec1752-file.annotations | 49 + .../jenkins/NUnit-sec1752-https.annotations | 49 + .../nunit3/jenkins/NUnit-simple.annotations | 41 + .../nunit/nunit3/jenkins/NUnit.annotations | 60 + .../nunit3/jenkins/NUnitUnicode.annotations | 48 + .../test/files/trx/mstest/pickles.annotations | 87 + .../nunit/FluentValidation.Tests.annotations | 1733 +++++++ .../trx/nunit/NUnit-net461-sample.annotations | 100 + .../NUnit-netcoreapp3.1-sample.annotations | 100 + .../files/trx/nunit/SilentNotes.annotations | 233 + .../files/trx/xunit/dotnet-trx.annotations | 139 + .../trx/xunit/xUnit-net461-sample.annotations | 102 + .../xUnit-netcoreapp3.1-sample.annotations | 102 + ...mi_YAMILEX 2015-10-24 04_18_59.annotations | 140 + .../test/files/xunit/mstest/fixie.annotations | 93 + .../mstest/jenkinsci/testcase1.annotations | 66 + .../mstest/jenkinsci/testcase2.annotations | 43 + .../mstest/jenkinsci/testcase3.annotations | 67 + .../mstest/jenkinsci/testcase4.annotations | 29 + .../mstest/jenkinsci/testcase5.annotations | 44 + .../mstest/jenkinsci/testcase6.annotations | 51 + .../files/xunit/mstest/pickles.annotations | 84 + python/test/test_junit.py | 65 + 62 files changed, 11548 insertions(+) create mode 100644 python/test/files/junit-xml/junit.multiresult.annotations create mode 100644 python/test/files/junit-xml/minimal-attributes.annotations create mode 100644 python/test/files/junit-xml/no-attributes.annotations create mode 100644 python/test/files/junit-xml/no-cases-but-tests.annotations create mode 100644 python/test/files/junit-xml/no-cases.annotations create mode 100644 python/test/files/junit-xml/non-junit.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.fail.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.gloo.elastic.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.tf.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.torch.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.gloo.standalone.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.gloo.static.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.mpi.integration.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.mpi.standalone.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.mpi.static.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.spark.integration.1.annotations create mode 100644 python/test/files/junit-xml/pytest/junit.spark.integration.2.annotations create mode 100644 python/test/files/junit-xml/scalatest/TEST-uk.co.gresearch.spark.diff.DiffOptionsSuite.annotations create mode 100644 python/test/files/junit-xml/testsuite-in-testsuite.annotations create mode 100644 python/test/files/junit-xml/tst/disabled.annotations create mode 100644 python/test/files/junit-xml/unsupported-unicode.annotations create mode 100644 python/test/files/junit-xml/with-xml-entities.annotations create mode 100644 python/test/files/junit-xml/xunit/xunit.annotations create mode 100644 python/test/files/nunit/mstest/clicketyclackety.annotations create mode 100644 python/test/files/nunit/mstest/pickles.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-correct.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-correct2.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-correct3.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-failure.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-healthReport.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-ignored.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-issue1077.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-issue33493.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-issue44527.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-issue48478.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-issue50162.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-issue5674.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-issue6353.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-multinamespace.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-sec1752-file.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-sec1752-https.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit-simple.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnit.annotations create mode 100644 python/test/files/nunit/nunit3/jenkins/NUnitUnicode.annotations create mode 100644 python/test/files/trx/mstest/pickles.annotations create mode 100644 python/test/files/trx/nunit/FluentValidation.Tests.annotations create mode 100644 python/test/files/trx/nunit/NUnit-net461-sample.annotations create mode 100644 python/test/files/trx/nunit/NUnit-netcoreapp3.1-sample.annotations create mode 100644 python/test/files/trx/nunit/SilentNotes.annotations create mode 100644 python/test/files/trx/xunit/dotnet-trx.annotations create mode 100644 python/test/files/trx/xunit/xUnit-net461-sample.annotations create mode 100644 python/test/files/trx/xunit/xUnit-netcoreapp3.1-sample.annotations create mode 100644 python/test/files/trx/yami_YAMILEX 2015-10-24 04_18_59.annotations create mode 100644 python/test/files/xunit/mstest/fixie.annotations create mode 100644 python/test/files/xunit/mstest/jenkinsci/testcase1.annotations create mode 100644 python/test/files/xunit/mstest/jenkinsci/testcase2.annotations create mode 100644 python/test/files/xunit/mstest/jenkinsci/testcase3.annotations create mode 100644 python/test/files/xunit/mstest/jenkinsci/testcase4.annotations create mode 100644 python/test/files/xunit/mstest/jenkinsci/testcase5.annotations create mode 100644 python/test/files/xunit/mstest/jenkinsci/testcase6.annotations create mode 100644 python/test/files/xunit/mstest/pickles.annotations diff --git a/python/test/files/junit-xml/junit.multiresult.annotations b/python/test/files/junit-xml/junit.multiresult.annotations new file mode 100644 index 00000000..63061b33 --- /dev/null +++ b/python/test/files/junit-xml/junit.multiresult.annotations @@ -0,0 +1,79 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 errors, 1 fail, 1 skipped, 1 pass in 1s', + 'summary': + '1 files\u2004\u20031 suites\u2004\u2003\u20021s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n4 ' + 'tests\u20031 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20031 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n4 runs\u2006\u2003' + '-2 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20033 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u20032 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n\nResults for ' + 'commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0KotfBTeRlCEONGPmYXKuPdlQhEujdvkrn4BkYTX9jQMU4RQoU1ogzgXcZXhKTmsgVFpf' + '5S0AFnc2wSTHNoRI/5wehKL82S68d6fLmpcK5V/48pby2EF/JitEt+P6y+BE/eAAAA\n', + 'annotations': [ + { + 'path': 'test class', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'failure', + 'message': 'junit.multiresult.xml', + 'title': 'test that errors (test class) with error', + 'raw_details': 'stdout' + }, + { + 'path': 'test class', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'junit.multiresult.xml', + 'title': 'test that fails (test class) failed', + 'raw_details': 'Assertion failed' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There is 1 skipped test, see "Raw output" for the name of the ' + 'skipped test.', + 'title': '1 skipped test found', + 'raw_details': 'test class ‑ test that is skipped' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 4 tests, see "Raw output" for the full list of tests.', + 'title': '4 tests found', + 'raw_details': + 'test class ‑ test that errors\ntest class ‑ test that fails\ntest ' + 'class ‑ test that is skipped\ntest class ‑ test that succeeds' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/minimal-attributes.annotations b/python/test/files/junit-xml/minimal-attributes.annotations new file mode 100644 index 00000000..06d82f6d --- /dev/null +++ b/python/test/files/junit-xml/minimal-attributes.annotations @@ -0,0 +1,70 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 errors, 1 fail, 1 skipped, 1 pass in 0s', + 'summary': + '4 tests\u2002\u2003\u20031 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20031 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u2003\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n\nResults for ' + 'commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0KoLTSx8jKGIMSNfMwClfHuAoJC92Z2MxeVoISjC5kGQl0A/8EWkHmwJuIYMR58Os11ry' + '5wXn6LOODshGSgOiEQLRaDwdRemm3u5b+WuYllblvcag0+QlnE7YzeD8XajRvdAAAA\n', + 'annotations': [ + { + 'path': 'ClassName', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'minimal-attributes.xml', + 'title': 'failed_test (ClassName) failed' + }, + { + 'path': 'ClassName', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'failure', + 'message': 'minimal-attributes.xml', + 'title': 'error_test (ClassName) with error' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There is 1 skipped test, see "Raw output" for the name of the ' + 'skipped test.', + 'title': '1 skipped test found', + 'raw_details': 'ClassName ‑ skipped_test' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 4 tests, see "Raw output" for the full list of tests.', + 'title': '4 tests found', + 'raw_details': + 'ClassName ‑ error_test\nClassName ‑ failed_test\nClassName ‑ ' + 'skipped_test\nClassName ‑ test_name' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/no-attributes.annotations b/python/test/files/junit-xml/no-attributes.annotations new file mode 100644 index 00000000..61937720 --- /dev/null +++ b/python/test/files/junit-xml/no-attributes.annotations @@ -0,0 +1,31 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 errors, 1 fail, 1 skipped, 1 pass in 0s', + 'summary': + '4 tests\u2002\u2003\u20031 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20031 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u2003\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n\nResults for ' + 'commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0KoLTSx8jKGIMSNfMwClfHuAoJC92Z2MxeVoISjC5kGQl0A/8EWkHmwJuIYMR58Os11ry' + '5wXn6LOODshGSgOiEQLRaDwdRemm3u5b+WuYllblvcag0+QlnE7YzeD8XajRvdAAAA\n', + 'annotations': [] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/no-cases-but-tests.annotations b/python/test/files/junit-xml/no-cases-but-tests.annotations new file mode 100644 index 00000000..1ea1fc85 --- /dev/null +++ b/python/test/files/junit-xml/no-cases-but-tests.annotations @@ -0,0 +1,30 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 fail, 2 skipped, 3 pass in 0s', + 'summary': + '6 tests\u2002\u2003\u20033 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20032 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MOw6AIBAFr' + '0KoLfwkFl7GEJS4UcEsUBnv7spH6N7MS+bmCo7V8ol1DePWg/th8SgcGE3YEtLhvmvMe7' + 'ZeShJDETtcJPpfKAFHqkWxIhpMQfQ6975Z5yKXWuAqFrhuSXOe4AjSYnYT/HkBNCXSZd0' + 'AAAA=\n', + 'annotations': [] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/no-cases.annotations b/python/test/files/junit-xml/no-cases.annotations new file mode 100644 index 00000000..debf3585 --- /dev/null +++ b/python/test/files/junit-xml/no-cases.annotations @@ -0,0 +1,29 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'No tests found', + 'summary': + '0 tests\u2002\u2003\u20030 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0K2ttDWyxiCEDfyMbtQGe8uQaNL92ZeMic49JZhVtOggAvmD9ZCOmOKFceK9cgs98LFmF' + '7seHTCafSdsESJXkMlspgy9/BfayxijWXLpBAwV3iX4k3DdQOuuvQ/3QAAAA==\n', + 'annotations': [] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/non-junit.annotations b/python/test/files/junit-xml/non-junit.annotations new file mode 100644 index 00000000..e3e8d563 --- /dev/null +++ b/python/test/files/junit-xml/non-junit.annotations @@ -0,0 +1,39 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 parse errors', + 'summary': + '0 tests\u2002\u2003\u20030 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n0 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n1 errors\n\nResults ' + 'for commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMywqAIBBFf' + '0Vm3aK2/UyIKQ35iBldRf+emNC4u+dcODc49JZhVcukgAvmBnOFvZDOmGLHemSWe+NizC' + 'hOvAbhNPpBWKJE3VCJLKbMffzXGotYY9kyKQTMFfpSfGh4XnRU87HdAAAA\n', + 'annotations': [ + { + 'path': 'non-junit.xml', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'failure', + 'message': 'Invalid format.', + 'title': 'Error processing result file', + 'raw_details': 'non-junit.xml' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.fail.annotations b/python/test/files/junit-xml/pytest/junit.fail.annotations new file mode 100644 index 00000000..108176f7 --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.fail.annotations @@ -0,0 +1,74 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 fail, 1 skipped, 3 pass in 2s', + 'summary': + '5 tests\u2002\u2003\u20033 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '2s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20031 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0KoLfzExssYghA3IpgFKuPdXVEUuzez2dm5BqM8H1hTMe4jhBemiCKAs4QtIR3CderzHn' + '2UkkT3iQW25/kWWoD5CYXokExNBqPNvWuWuZu/WuIilrhsSbeuEAiexfws+HECiWEEJ90' + 'AAAA=\n', + 'annotations': [ + { + 'path': 'test/test_spark.py', + 'start_line': 819, + 'end_line': 819, + 'annotation_level': 'warning', + 'message': 'pytest/junit.fail.xml', + 'title': 'test_rsh_events (test.test_spark.SparkTests) failed', + 'raw_details': + 'self = \n\n ' + ' def test_rsh_events(self):\n > ' + 'self.do_test_rsh_events(3)\n\n test_spark.py:821:\n ' + ' _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ' + '_ _ _ _ _ _ _ _ _ _ _ _ _ _\n test_spark.py:836: in ' + 'do_test_rsh_events\n self.do_test_rsh(command, 143, ' + 'events=events)\n test_spark.py:852: in do_test_rsh\n ' + ' self.assertEqual(expected_result, res)\n ' + ' E AssertionError: 143 != 0\n ' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There is 1 skipped test, see "Raw output" for the name of the ' + 'skipped test.', + 'title': '1 skipped test found', + 'raw_details': 'test.test_spark.SparkTests ‑ test_get_available_devices' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 5 tests, see "Raw output" for the full list of tests.', + 'title': '5 tests found', + 'raw_details': + 'test.test_spark.SparkTests ‑ test_check_shape_compatibility\n' + 'test.test_spark.SparkTests ‑ test_get_available_devices\n' + 'test.test_spark.SparkTests ‑ test_get_col_info\n' + 'test.test_spark.SparkTests ‑ test_rsh_events\n' + 'test.test_spark.SparkTests ‑ test_rsh_with_non_zero_exit_code' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.gloo.elastic.annotations b/python/test/files/junit-xml/pytest/junit.gloo.elastic.annotations new file mode 100644 index 00000000..d12ac11a --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.gloo.elastic.annotations @@ -0,0 +1,87 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 10 tests pass, 4 skipped in 1m 12s', + 'summary': + '14 tests\u2002\u2003\u200310 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '1m 12s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u2003\u205f\u20044 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMQQqAIBBFr' + 'yKuW1QEQZcJMaMhzRh1Fd290SxrN+/94R18Bq0cH1hTMe4C+BemgMKD3Qj7lpgWn7bugd' + 'EFKaOpi1lhJ1NeZgGaRPlQiBazwbC9xXj/grcovcSfXOJvTVpjwBPki7lF8PMCyjZFT+I' + 'AAAA=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 4 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '4 skipped tests found', + 'raw_details': + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_all_hosts_blacklisted\n' + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_min_hosts_timeout\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_all_hosts_blacklisted\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_min_hosts_timeout' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 14 tests, see "Raw output" for the full list of tests.', + 'title': '14 tests found', + 'raw_details': + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_all_hosts_blacklisted\n' + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_all_ranks_failure\n' + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_fault_tolerance_without_scaling\n' + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_hosts_added_and_removed\n' + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_min_hosts_timeout\n' + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_reset_limit\n' + 'test.integration.test_elastic_tensorflow.ElasticTensorFlowTests ‑ ' + 'test_single_rank_failure\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_all_hosts_blacklisted\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_all_ranks_failure\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_fault_tolerance_without_scaling\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_hosts_added_and_removed\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_min_hosts_timeout\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_reset_limit\n' + 'test.integration.test_elastic_torch.ElasticTorchTests ‑ ' + 'test_single_rank_failure' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.tf.annotations b/python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.tf.annotations new file mode 100644 index 00000000..8d0e8997 --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.tf.annotations @@ -0,0 +1,103 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 20 tests pass, 2 skipped in 10m 27s', + 'summary': + '22 tests\u2002\u2003\u200320 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '10m 27s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u2003\u205f\u20042 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMMQ6AIAxFr' + '0KYHZRBEy9jCGpsFDAFJuPdLaigW9/7zTv4DNvkeM+ainEXwGcYA0oP1hC2oiNBk4+jEC' + '8MLigVTV3MCns0WcwSNhLlY0K0+BgMJhfj/QveovQSf3KJvzVltQZP8FzMLZKfF82Ojyn' + 'jAAAA\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 2 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '2 skipped tests found', + 'raw_details': + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_down_by_discovery\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_hosts_added_and_removed' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 22 tests, see "Raw output" for the full list of tests.', + 'title': '22 tests found', + 'raw_details': + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_down_by_discovery\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_down_by_exception\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_no_spark_black_list\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_spark_blacklist_no_executor_reuse\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_spark_blacklist_no_executor_reuse_in_app\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ ' + 'test_auto_scale_spark_blacklist_no_executor_reuse_same_task\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_spark_blacklist_no_node_reuse\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_spark_blacklist_no_node_reuse_in_app\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_auto_scale_up\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_all_hosts_lost\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_exception_all_ranks\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_exception_single_rank\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_exception_with_min_hosts_timeout\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_hosts_added_and_removed\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_no_spark_blacklist\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_spark_blacklist_no_executor_reuse\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_executor_reuse_in_app\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_executor_reuse_same_task\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_spark_blacklist_no_node_reuse\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_node_reuse_in_app\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_fault_tolerance_unused_hosts_added_and_removed\n' + 'test.integration.test_elastic_spark_tensorflow.ElasticSparkTensorfl' + 'owTests ‑ test_happy_run' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.torch.annotations b/python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.torch.annotations new file mode 100644 index 00000000..3a89b79e --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.gloo.elastic.spark.torch.annotations @@ -0,0 +1,84 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 22 tests pass in 11m 10s', + 'summary': + '22 tests\u2002\u2003\u200322 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '11m 10s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u2003\u205f\u20040 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/12MOw6AIBAFr' + '0KoLdRCEy9jCErc+MEsUBnv7oKIYrczbzMHV7CMhnesKhg3DmyCwaGwoDfCpi1J0GT9WN' + 'cP9MZJ+TMz7GTSf68ELJkYETVGg25LRX9nwVu8vcCfXOBvTep1BUsQL2Ymwc8LUe9HxOM' + 'AAAA=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 22 tests, see "Raw output" for the full list of tests.', + 'title': '22 tests found', + 'raw_details': + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_down_by_discovery\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_down_by_exception\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_no_spark_black_list\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_spark_blacklist_no_executor_reuse\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_spark_blacklist_no_executor_reuse_in_app\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_spark_blacklist_no_executor_reuse_same_task\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_spark_blacklist_no_node_reuse\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_spark_blacklist_no_node_reuse_in_app\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_auto_scale_up\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_all_hosts_lost\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_exception_all_ranks\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_exception_single_rank\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_exception_with_min_hosts_timeout\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_hosts_added_and_removed\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_no_spark_blacklist\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_executor_reuse\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_executor_reuse_in_app\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_executor_reuse_same_task\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_node_reuse\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_spark_blacklist_no_node_reuse_in_app\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_fault_tolerance_unused_hosts_added_and_removed\n' + 'test.integration.test_elastic_spark_torch.ElasticSparkTorchTests ‑ ' + 'test_happy_run' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.gloo.standalone.annotations b/python/test/files/junit-xml/pytest/junit.gloo.standalone.annotations new file mode 100644 index 00000000..693162dc --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.gloo.standalone.annotations @@ -0,0 +1,179 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 80 tests pass, 17 skipped in 3m 25s', + 'summary': + '97 tests\u2002\u2003\u200380 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '3m 25s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u200317 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMTQqAIBBGr' + 'yKuW1QQ/VwmxIqGSmPUVXT3xrK03bz3De/gE6yj4R0rMsaNA/vB4FBY0IqwzCsSNFk/tv' + 'ULvXFSkmnyaBbYfSD+TAJWMvFlRNQYDDr1Jf39Kz4iCd4i6d2c5qTeNrAE4WJmFvy8ADN' + 'K9FzlAAAA\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 17 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '17 skipped tests found', + 'raw_details': + 'test.test_run.RunTests ‑ test_js_run\ntest.test_run.RunTests ‑ ' + 'test_mpi_run_full\ntest.test_run.RunTests ‑ test_mpi_run_minimal\n' + 'test.test_run.RunTests ‑ test_mpi_run_on_large_cluster\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_both_paths\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_both_pythonpaths\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_env_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_env_pythonpath\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_non_zero_exit\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_os_environ\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_sys_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_sys_pythonpath\n' + 'test.test_run.RunTests ‑ test_mpi_run_without_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_without_pythonpath\n' + 'test.test_spark.SparkTests ‑ test_get_available_devices\n' + 'test.test_spark.SparkTests ‑ test_happy_run_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_timeout_with_mpi' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 97 tests, see "Raw output" for the full list of tests.', + 'title': '97 tests found', + 'raw_details': + 'test.test_run.RunTests ‑ test_autotune_args\n' + 'test.test_run.RunTests ‑ test_autotuning_with_fixed_param\n' + 'test.test_run.RunTests ‑ test_config_file\ntest.test_run.RunTests ' + '‑ test_config_file_override_args\ntest.test_run.RunTests ‑ ' + 'test_generate_jsrun_rankfile\ntest.test_run.RunTests ‑ ' + 'test_get_mpi_implementation\ntest.test_run.RunTests ‑ ' + 'test_gloo_run_minimal\ntest.test_run.RunTests ‑ ' + 'test_gloo_run_with_os_environ\ntest.test_run.RunTests ‑ test_hash\n' + 'test.test_run.RunTests ‑ test_horovodrun_hostfile\n' + 'test.test_run.RunTests ‑ test_host_hash\ntest.test_run.RunTests ‑ ' + 'test_in_thread_args\ntest.test_run.RunTests ‑ test_js_run\n' + 'test.test_run.RunTests ‑ test_library_args\ntest.test_run.RunTests ' + '‑ test_logging_args\ntest.test_run.RunTests ‑ test_mpi_run_full\n' + 'test.test_run.RunTests ‑ test_mpi_run_minimal\n' + 'test.test_run.RunTests ‑ test_mpi_run_on_large_cluster\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_both_paths\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_both_pythonpaths\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_env_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_env_pythonpath\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_non_zero_exit\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_os_environ\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_sys_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_sys_pythonpath\n' + 'test.test_run.RunTests ‑ test_mpi_run_without_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_without_pythonpath\n' + 'test.test_run.RunTests ‑ test_on_event\ntest.test_run.RunTests ‑ ' + 'test_params_args\ntest.test_run.RunTests ‑ test_run_controller\n' + 'test.test_run.RunTests ‑ test_run_with_jsrun\n' + 'test.test_run.RunTests ‑ ' + 'test_safe_shell_exec_captures_last_line_wo_eol\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_captures_stderr\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_captures_stdout\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_interrupts_on_event\n' + 'test.test_run.RunTests ‑ ' + 'test_safe_shell_exec_interrupts_on_parent_shutdown\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_returns_exit_code\n' + 'test.test_run.RunTests ‑ test_stall_check_args\n' + 'test.test_run.RunTests ‑ test_timeline_args\n' + 'test.test_run.RunTests ‑ test_validate_config_args\n' + 'test.test_spark.SparkTests ‑ test_check_shape_compatibility\n' + 'test.test_spark.SparkTests ‑ test_df_cache\n' + 'test.test_spark.SparkTests ‑ test_driver_common_interfaces\n' + 'test.test_spark.SparkTests ‑ test_driver_common_interfaces_fails\n' + 'test.test_spark.SparkTests ‑ ' + 'test_driver_common_interfaces_from_settings\n' + 'test.test_spark.SparkTests ‑ test_driver_set_local_rank_to_index\n' + 'test.test_spark.SparkTests ‑ test_get_available_devices\n' + 'test.test_spark.SparkTests ‑ test_get_col_info\n' + 'test.test_spark.SparkTests ‑ test_get_col_info_error_bad_shape\n' + 'test.test_spark.SparkTests ‑ test_get_col_info_error_bad_size\n' + 'test.test_spark.SparkTests ‑ test_get_metadata\n' + 'test.test_spark.SparkTests ‑ test_gloo_exec_fn\n' + 'test.test_spark.SparkTests ‑ ' + 'test_gloo_exec_fn_provides_driver_with_local_rank\n' + 'test.test_spark.SparkTests ‑ test_happy_run_elastic\n' + 'test.test_spark.SparkTests ‑ test_happy_run_with_gloo\n' + 'test.test_spark.SparkTests ‑ test_happy_run_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_hdfs_store_parse_url\n' + 'test.test_spark.SparkTests ‑ test_host_hash\n' + 'test.test_spark.SparkTests ‑ ' + 'test_mpi_exec_fn_provides_driver_with_local_rank\n' + 'test.test_spark.SparkTests ‑ test_mpirun_exec_fn\n' + 'test.test_spark.SparkTests ‑ test_mpirun_not_found\n' + 'test.test_spark.SparkTests ‑ test_prepare_data_compress_sparse\n' + 'test.test_spark.SparkTests ‑ test_prepare_data_no_compression\n' + 'test.test_spark.SparkTests ‑ test_rsh_event\n' + 'test.test_spark.SparkTests ‑ test_rsh_events\n' + 'test.test_spark.SparkTests ‑ test_rsh_with_non_zero_exit_code\n' + 'test.test_spark.SparkTests ‑ test_rsh_with_zero_exit_code\n' + 'test.test_spark.SparkTests ‑ test_spark_driver_host_discovery\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_defaults_num_proc_to_spark_cores_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_defaults_num_proc_to_spark_cores_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_does_not_default_env_to_os_env_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_does_not_default_env_to_os_env_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_num_proc_precedes_spark_cores_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_num_proc_precedes_spark_cores_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_spark_run_with_gloo\n' + 'test.test_spark.SparkTests ‑ test_spark_run_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_with_non_zero_exit_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_with_non_zero_exit_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_with_os_environ_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_spark_run_with_path_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_spark_task_service_abort_command\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_task_service_abort_no_command\n' + 'test.test_spark.SparkTests ‑ test_spark_task_service_env\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_task_service_execute_command\n' + 'test.test_spark.SparkTests ‑ test_sync_hdfs_store\n' + 'test.test_spark.SparkTests ‑ test_task_fn_run_commands\n' + 'test.test_spark.SparkTests ‑ test_task_fn_run_gloo_exec\n' + 'test.test_spark.SparkTests ‑ ' + 'test_task_service_check_for_command_start\n' + 'test.test_spark.SparkTests ‑ ' + 'test_task_service_wait_for_command_start_with_timeout\n' + 'test.test_spark.SparkTests ‑ ' + 'test_task_service_wait_for_command_start_without_timeout\n' + 'test.test_spark.SparkTests ‑ test_timeout_with_gloo\n' + 'test.test_spark.SparkTests ‑ test_timeout_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_to_list\n' + 'test.test_spark.SparkTests ‑ test_train_val_split_col_boolean\n' + 'test.test_spark.SparkTests ‑ test_train_val_split_col_integer\n' + 'test.test_spark.SparkTests ‑ test_train_val_split_ratio' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.gloo.static.annotations b/python/test/files/junit-xml/pytest/junit.gloo.static.annotations new file mode 100644 index 00000000..6890b679 --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.gloo.static.annotations @@ -0,0 +1,123 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 12 tests pass, 12 skipped in 1m 9s', + 'summary': + '24 tests\u2002\u2003\u200312 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '1m 9s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u200312 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMTQqAIBBGr' + 'yKuW1REUJcJsaQhzRh1Fd29sR+z3bz3DW/nCvTkeM+qgnEXwCcYAwoPdiVsO2JafNzq5o' + 'XBBSnjd/2ZBba/UQI0mTKJCdHiYzCsKRnvX/EWWfASWe/iPCetMeAJnou5WfDjBP7Rpw/' + 'kAAAA\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 12 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '12 skipped tests found', + 'raw_details': + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_remote_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_remote_func' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 24 tests, see "Raw output" for the full list of tests.', + 'title': '24 tests found', + 'raw_details': + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_remote_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_remote_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_remote_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_remote_func' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.mpi.integration.annotations b/python/test/files/junit-xml/pytest/junit.mpi.integration.annotations new file mode 100644 index 00000000..b49f129e --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.mpi.integration.annotations @@ -0,0 +1,44 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 3 tests pass in 15s', + 'summary': + '3 tests\u2002\u2003\u20033 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '15s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0K2ttAYGy9jCGLciGAWqIx3d/EL3Zt5yewwodEeetFUAnzE8MEYSQZ0NmHHzE9IX/vuwU' + 'elSrHgxqL+xCTRFEITOXoMRfv20sxzN/+1i7PYxXlLuXXFwPAs4WcJxwk6KM9l3gAAAA=' + '=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 3 tests, see "Raw output" for the full list of tests.', + 'title': '3 tests found', + 'raw_details': + 'test.test_interactiverun.InteractiveRunTests ‑ test_failed_run\n' + 'test.test_interactiverun.InteractiveRunTests ‑ test_happy_run\n' + 'test.test_interactiverun.InteractiveRunTests ‑ ' + 'test_happy_run_elastic' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.mpi.standalone.annotations b/python/test/files/junit-xml/pytest/junit.mpi.standalone.annotations new file mode 100644 index 00000000..2ba3f3d7 --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.mpi.standalone.annotations @@ -0,0 +1,163 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 96 tests pass, 1 skipped in 3m 39s', + 'summary': + '97 tests\u2002\u2003\u200396 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '3m 39s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u2003\u205f\u20041 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0KoLdRCo5cxBCFu/GAWqIx3d1FE7N7MS+bgGhZlec+qgnHrwSUYPQoHZiOsq44EXS6cXf' + 'vCYL2UwTSfmWGPgUdoAQuJMgmFaDAa9Fsqhv0LPuLr3Zzlbs5r0qwrOIK4mJ0EPy/3HdY' + 'E4wAAAA==\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There is 1 skipped test, see "Raw output" for the name of the ' + 'skipped test.', + 'title': '1 skipped test found', + 'raw_details': 'test.test_spark.SparkTests ‑ test_get_available_devices' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 97 tests, see "Raw output" for the full list of tests.', + 'title': '97 tests found', + 'raw_details': + 'test.test_run.RunTests ‑ test_autotune_args\n' + 'test.test_run.RunTests ‑ test_autotuning_with_fixed_param\n' + 'test.test_run.RunTests ‑ test_config_file\ntest.test_run.RunTests ' + '‑ test_config_file_override_args\ntest.test_run.RunTests ‑ ' + 'test_generate_jsrun_rankfile\ntest.test_run.RunTests ‑ ' + 'test_get_mpi_implementation\ntest.test_run.RunTests ‑ ' + 'test_gloo_run_minimal\ntest.test_run.RunTests ‑ ' + 'test_gloo_run_with_os_environ\ntest.test_run.RunTests ‑ test_hash\n' + 'test.test_run.RunTests ‑ test_horovodrun_hostfile\n' + 'test.test_run.RunTests ‑ test_host_hash\ntest.test_run.RunTests ‑ ' + 'test_in_thread_args\ntest.test_run.RunTests ‑ test_js_run\n' + 'test.test_run.RunTests ‑ test_library_args\ntest.test_run.RunTests ' + '‑ test_logging_args\ntest.test_run.RunTests ‑ test_mpi_run_full\n' + 'test.test_run.RunTests ‑ test_mpi_run_minimal\n' + 'test.test_run.RunTests ‑ test_mpi_run_on_large_cluster\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_both_paths\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_both_pythonpaths\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_env_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_env_pythonpath\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_non_zero_exit\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_os_environ\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_sys_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_with_sys_pythonpath\n' + 'test.test_run.RunTests ‑ test_mpi_run_without_path\n' + 'test.test_run.RunTests ‑ test_mpi_run_without_pythonpath\n' + 'test.test_run.RunTests ‑ test_on_event\ntest.test_run.RunTests ‑ ' + 'test_params_args\ntest.test_run.RunTests ‑ test_run_controller\n' + 'test.test_run.RunTests ‑ test_run_with_jsrun\n' + 'test.test_run.RunTests ‑ ' + 'test_safe_shell_exec_captures_last_line_wo_eol\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_captures_stderr\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_captures_stdout\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_interrupts_on_event\n' + 'test.test_run.RunTests ‑ ' + 'test_safe_shell_exec_interrupts_on_parent_shutdown\n' + 'test.test_run.RunTests ‑ test_safe_shell_exec_returns_exit_code\n' + 'test.test_run.RunTests ‑ test_stall_check_args\n' + 'test.test_run.RunTests ‑ test_timeline_args\n' + 'test.test_run.RunTests ‑ test_validate_config_args\n' + 'test.test_spark.SparkTests ‑ test_check_shape_compatibility\n' + 'test.test_spark.SparkTests ‑ test_df_cache\n' + 'test.test_spark.SparkTests ‑ test_driver_common_interfaces\n' + 'test.test_spark.SparkTests ‑ test_driver_common_interfaces_fails\n' + 'test.test_spark.SparkTests ‑ ' + 'test_driver_common_interfaces_from_settings\n' + 'test.test_spark.SparkTests ‑ test_driver_set_local_rank_to_index\n' + 'test.test_spark.SparkTests ‑ test_get_available_devices\n' + 'test.test_spark.SparkTests ‑ test_get_col_info\n' + 'test.test_spark.SparkTests ‑ test_get_col_info_error_bad_shape\n' + 'test.test_spark.SparkTests ‑ test_get_col_info_error_bad_size\n' + 'test.test_spark.SparkTests ‑ test_get_metadata\n' + 'test.test_spark.SparkTests ‑ test_gloo_exec_fn\n' + 'test.test_spark.SparkTests ‑ ' + 'test_gloo_exec_fn_provides_driver_with_local_rank\n' + 'test.test_spark.SparkTests ‑ test_happy_run_elastic\n' + 'test.test_spark.SparkTests ‑ test_happy_run_with_gloo\n' + 'test.test_spark.SparkTests ‑ test_happy_run_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_hdfs_store_parse_url\n' + 'test.test_spark.SparkTests ‑ test_host_hash\n' + 'test.test_spark.SparkTests ‑ ' + 'test_mpi_exec_fn_provides_driver_with_local_rank\n' + 'test.test_spark.SparkTests ‑ test_mpirun_exec_fn\n' + 'test.test_spark.SparkTests ‑ test_mpirun_not_found\n' + 'test.test_spark.SparkTests ‑ test_prepare_data_compress_sparse\n' + 'test.test_spark.SparkTests ‑ test_prepare_data_no_compression\n' + 'test.test_spark.SparkTests ‑ test_rsh_event\n' + 'test.test_spark.SparkTests ‑ test_rsh_events\n' + 'test.test_spark.SparkTests ‑ test_rsh_with_non_zero_exit_code\n' + 'test.test_spark.SparkTests ‑ test_rsh_with_zero_exit_code\n' + 'test.test_spark.SparkTests ‑ test_spark_driver_host_discovery\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_defaults_num_proc_to_spark_cores_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_defaults_num_proc_to_spark_cores_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_does_not_default_env_to_os_env_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_does_not_default_env_to_os_env_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_num_proc_precedes_spark_cores_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_num_proc_precedes_spark_cores_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_spark_run_with_gloo\n' + 'test.test_spark.SparkTests ‑ test_spark_run_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_with_non_zero_exit_with_gloo\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_with_non_zero_exit_with_mpi\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_run_with_os_environ_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_spark_run_with_path_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_spark_task_service_abort_command\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_task_service_abort_no_command\n' + 'test.test_spark.SparkTests ‑ test_spark_task_service_env\n' + 'test.test_spark.SparkTests ‑ ' + 'test_spark_task_service_execute_command\n' + 'test.test_spark.SparkTests ‑ test_sync_hdfs_store\n' + 'test.test_spark.SparkTests ‑ test_task_fn_run_commands\n' + 'test.test_spark.SparkTests ‑ test_task_fn_run_gloo_exec\n' + 'test.test_spark.SparkTests ‑ ' + 'test_task_service_check_for_command_start\n' + 'test.test_spark.SparkTests ‑ ' + 'test_task_service_wait_for_command_start_with_timeout\n' + 'test.test_spark.SparkTests ‑ ' + 'test_task_service_wait_for_command_start_without_timeout\n' + 'test.test_spark.SparkTests ‑ test_timeout_with_gloo\n' + 'test.test_spark.SparkTests ‑ test_timeout_with_mpi\n' + 'test.test_spark.SparkTests ‑ test_to_list\n' + 'test.test_spark.SparkTests ‑ test_train_val_split_col_boolean\n' + 'test.test_spark.SparkTests ‑ test_train_val_split_col_integer\n' + 'test.test_spark.SparkTests ‑ test_train_val_split_ratio' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.mpi.static.annotations b/python/test/files/junit-xml/pytest/junit.mpi.static.annotations new file mode 100644 index 00000000..aef2ddb1 --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.mpi.static.annotations @@ -0,0 +1,88 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 24 tests pass in 2m 4s', + 'summary': + '24 tests\u2002\u2003\u200324 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '2m 4s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u2003\u205f\u20040 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/12MOwqAMBAFr' + 'xK2tlCx8jISYsTFT2STVOLd3ajkY/dmHswJE67aQi+aSoD16CKMnqRDswdsOxZ8uXAmGK' + 'xX6mcWPNjUUUwS10JoIkOfIb/HYthF8BWp93CWezivKbNt6Bi+Jews4boBWo1x8eMAAAA' + '=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 24 tests, see "Raw output" for the full list of tests.', + 'title': '24 tests found', + 'raw_details': + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_gloo_remote_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_failure_mpi_remote_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_gloo_remote_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_local_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_local_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_mixed_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_mixed_func\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_remote_cmd\n' + 'test.integration.test_static_run.StaticRunTests ‑ ' + 'test_run_success_mpi_remote_func' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.spark.integration.1.annotations b/python/test/files/junit-xml/pytest/junit.spark.integration.1.annotations new file mode 100644 index 00000000..d1c9af04 --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.spark.integration.1.annotations @@ -0,0 +1,109 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 33 tests pass, 2 skipped in 2m 45s', + 'summary': + '35 tests\u2002\u2003\u200333 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '2m 45s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u2003\u205f\u20042 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr' + '0KoLfxECy9jCErcKGAWqIx3d1GzavdmXjK7NLBOQfaiKoQMCSLDmFBF8C5j15KgK+azYR' + 'hC0jqb5jULbGRqFkbBSqJkMSF6fAwmx8W8f8FbvL2LP7mLvzXtrYVI8CwRZiWPEwEjqVj' + 'jAAAA\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 2 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '2 skipped tests found', + 'raw_details': + 'test.test_spark_keras.SparkKerasTests ‑ test_session\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_happy_run_elastic_fault_tolerant_fails' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 35 tests, see "Raw output" for the full list of tests.', + 'title': '35 tests found', + 'raw_details': + 'test.test_spark_keras.SparkKerasTests ‑ test_batch_generator_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_calculate_shuffle_buffer_size\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_calculate_shuffle_buffer_size_small_row_size\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_convert_custom_sparse_to_dense_bare_keras_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_custom_sparse_to_dense_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_fit_model\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_fit_model_multiclass\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_keras_direct_parquet_train\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_keras_model_checkpoint_callback\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_model_serialization\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_prep_data_tf_keras_fn_with_sparse_col\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_prep_data_tf_keras_fn_without_sparse_col\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_prepare_data_bare_keras_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_reshape\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_restore_from_checkpoint\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_serialize_param_value\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_session\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_loss_with_sample_weight\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_loss_without_sample_weight\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_shuffle_buffer_size\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_shuffle_buffer_size_small_row_size\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_construct_metric_value_holders_one_metric_for_all_labels\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_fit_model\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_get_metric_avgs\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_happy_run_elastic\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_happy_run_elastic_fault_tolerant\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_happy_run_elastic_fault_tolerant_fails\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_metric_class\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_prepare_np_data\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_pytorch_get_optimizer_with_unscaled_lr\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_restore_from_checkpoint\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_torch_direct_parquet_train\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_torch_param_serialize\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_transform_multi_class\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_update_metrics' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/pytest/junit.spark.integration.2.annotations b/python/test/files/junit-xml/pytest/junit.spark.integration.2.annotations new file mode 100644 index 00000000..523ba1e6 --- /dev/null +++ b/python/test/files/junit-xml/pytest/junit.spark.integration.2.annotations @@ -0,0 +1,109 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 33 tests pass, 2 skipped in 2m 52s', + 'summary': + '35 tests\u2002\u2003\u200333 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '2m 52s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u2003\u205f\u20042 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMSwqAMAwFr' + '1K6duEHEbxMKVUx+Kmk7Uq8u6mfVHeZeWF2OcDcO9mKIhPSBfAMXUDtwa4Rm5IETT6OVf' + '2CcsGYaKpkJtjI8L8aNMwkchY9osXHYFi5GO9f8Bapd/End/G3ZuyygCd4LuFGLY8TfGY' + 'a1uMAAAA=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 2 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '2 skipped tests found', + 'raw_details': + 'test.test_spark_keras.SparkKerasTests ‑ test_session\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_happy_run_elastic_fault_tolerant_fails' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 35 tests, see "Raw output" for the full list of tests.', + 'title': '35 tests found', + 'raw_details': + 'test.test_spark_keras.SparkKerasTests ‑ test_batch_generator_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_calculate_shuffle_buffer_size\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_calculate_shuffle_buffer_size_small_row_size\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_convert_custom_sparse_to_dense_bare_keras_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_custom_sparse_to_dense_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_fit_model\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_fit_model_multiclass\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_keras_direct_parquet_train\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_keras_model_checkpoint_callback\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_model_serialization\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_prep_data_tf_keras_fn_with_sparse_col\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_prep_data_tf_keras_fn_without_sparse_col\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_prepare_data_bare_keras_fn\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_reshape\n' + 'test.test_spark_keras.SparkKerasTests ‑ ' + 'test_restore_from_checkpoint\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_serialize_param_value\n' + 'test.test_spark_keras.SparkKerasTests ‑ test_session\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_loss_with_sample_weight\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_loss_without_sample_weight\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_shuffle_buffer_size\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_calculate_shuffle_buffer_size_small_row_size\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_construct_metric_value_holders_one_metric_for_all_labels\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_fit_model\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_get_metric_avgs\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_happy_run_elastic\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_happy_run_elastic_fault_tolerant\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_happy_run_elastic_fault_tolerant_fails\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_metric_class\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_prepare_np_data\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_pytorch_get_optimizer_with_unscaled_lr\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_restore_from_checkpoint\n' + 'test.test_spark_torch.SparkTorchTests ‑ ' + 'test_torch_direct_parquet_train\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_torch_param_serialize\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_transform_multi_class\n' + 'test.test_spark_torch.SparkTorchTests ‑ test_update_metrics' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/scalatest/TEST-uk.co.gresearch.spark.diff.DiffOptionsSuite.annotations b/python/test/files/junit-xml/scalatest/TEST-uk.co.gresearch.spark.diff.DiffOptionsSuite.annotations new file mode 100644 index 00000000..23ffa799 --- /dev/null +++ b/python/test/files/junit-xml/scalatest/TEST-uk.co.gresearch.spark.diff.DiffOptionsSuite.annotations @@ -0,0 +1,49 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 5 tests pass in 2s', + 'summary': + '5 tests\u2002\u2003\u20035 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '2s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMwQqAIBAFf' + '0U8d6igSz8TYkZLlrHqKfr3VlOz25t5MBdfQCvLR9Y1jFsPrsDsUTgwB2FPSIcL15D3ZL' + '2Uf7HBSaItYhGgf0IhGkwG/ZF7Yda5l79a5CoWuW5Js+/gCNJidhX8fgDdy7133QAAAA=' + '=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 5 tests, see "Raw output" for the full list of tests.', + 'title': '5 tests found', + 'raw_details': + 'uk.co.gresearch.spark.diff.DiffOptionsSuite ‑ diff options diff ' + 'value\nuk.co.gresearch.spark.diff.DiffOptionsSuite ‑ diff options ' + 'left and right prefixes\n' + 'uk.co.gresearch.spark.diff.DiffOptionsSuite ‑ diff options with ' + 'change column name same as diff column\n' + 'uk.co.gresearch.spark.diff.DiffOptionsSuite ‑ diff options with ' + 'empty diff column name\n' + 'uk.co.gresearch.spark.diff.DiffOptionsSuite ‑ fluent methods of ' + 'diff options' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/testsuite-in-testsuite.annotations b/python/test/files/junit-xml/testsuite-in-testsuite.annotations new file mode 100644 index 00000000..c0cadda3 --- /dev/null +++ b/python/test/files/junit-xml/testsuite-in-testsuite.annotations @@ -0,0 +1,42 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 5 tests pass in 4s', + 'summary': + '5 tests\u2002\u2003\u20035 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '4s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n4 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMywqAIBQFf' + '0VctyioTT8TYkqXfMRVV9G/Z6aluzNzYE4qQQlHZzJ0hLoAPsEYYQ3IPFiTMR7+uaayFx' + 'c4b8UORxT9JyQD1QiBaDEbDKb0nlnnXv5riatY4rrFrdbgI+RF3MbodQOdcxe63QAAAA=' + '=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 5 tests, see "Raw output" for the full list of tests.', + 'title': '5 tests found', + 'raw_details': + 'someName ‑ TestCase1\nsomeName ‑ TestCase2\nsomeName ‑ TestCase3\n' + 'someName ‑ TestCase4\nsomeName ‑ TestCase5' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/tst/disabled.annotations b/python/test/files/junit-xml/tst/disabled.annotations new file mode 100644 index 00000000..95630406 --- /dev/null +++ b/python/test/files/junit-xml/tst/disabled.annotations @@ -0,0 +1,240 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 errors, 19 fail, 5 skipped, 6 pass in 0s', + 'summary': + '\u205f\u20041 files\u2004\u2003\u205f\u20042 suites\u2004\u2003\u2002' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n31 ' + 'tests\u2003\u205f\u20046 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20035 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u200319 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n31 runs\u2006\u2003' + '11 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u200319 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n\nResults for ' + 'commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02NQQqAIBBFr' + 'yKuW2RRUJcJsaIhyxh1Fd29sdLczXsf3px8Bj1Z3jNRMG49uAcqgtGjdGB2wpKQBhemWk' + 'QYrFeKTPuLFQ4STRKzBB3aXTITosHvHfo9FcMdg+IXb7CMnPcekeeU2TZwBN/F7CL5dQP' + 'prhoZ4gAAAA==\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'factorial_of_value_from_fixture failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'positive_arguments_must_produce_expected_result failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'failure', + 'message': 'tst/disabled.xml', + 'title': 'test_which_throws_unknown_exception with error' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'positive_arguments_must_produce_expected_result[2] failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'factorial_of_value_from_fixture[0] failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'test_which_fails_check_eq_with_custom_message failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_ge_print failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_ge failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_gt_print failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_lt_print failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_print failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_gt failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_le_print failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_eq failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_eq_print failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_le failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_ne failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_lt failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'tst/disabled.xml', + 'title': 'check_ne_print failed' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 5 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '5 skipped tests found', + 'raw_details': + 'disabled_param_test[0]\ndisabled_param_test[1]\n' + 'disabled_param_test[2]\ndisabled_param_test[3]\ndisabled_test' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 31 tests, see "Raw output" for the full list of tests.', + 'title': '31 tests found', + 'raw_details': + 'check\ncheck_eq\ncheck_eq_print\ncheck_ge\ncheck_ge_print\n' + 'check_gt\ncheck_gt_print\ncheck_le\ncheck_le_print\ncheck_lt\n' + 'check_lt_print\ncheck_ne\ncheck_ne_print\ncheck_print\n' + 'disabled_param_test[0]\ndisabled_param_test[1]\n' + 'disabled_param_test[2]\ndisabled_param_test[3]\ndisabled_test\n' + 'factorial_of_value_from_fixture\n' + 'factorial_of_value_from_fixture[0]\n' + 'factorial_of_value_from_fixture[1]\n' + 'factorial_of_value_from_fixture[2]\n' + 'factorial_of_value_from_fixture[3]\n' + 'positive_arguments_must_produce_expected_result\n' + 'positive_arguments_must_produce_expected_result[0]\n' + 'positive_arguments_must_produce_expected_result[1]\n' + 'positive_arguments_must_produce_expected_result[2]\n' + 'positive_arguments_must_produce_expected_result[3]\n' + 'test_which_fails_check_eq_with_custom_message\n' + 'test_which_throws_unknown_exception' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/unsupported-unicode.annotations b/python/test/files/junit-xml/unsupported-unicode.annotations new file mode 100644 index 00000000..2ce7f322 --- /dev/null +++ b/python/test/files/junit-xml/unsupported-unicode.annotations @@ -0,0 +1,95 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '2 errors, 2 fail, 2 skipped, 1 pass in 8s', + 'summary': + '7 tests\u2002\u2003\u20031 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '8s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20032 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20032 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u2003\u20032 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n\nResults for ' + 'commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMMQ6AIAxFr' + '0KYXXTReBlDUGIjgikwGe9uQVDc/ntt3skV6MXxkbUN4y6Af2EOKDxYQzgQ0sHHU1/25I' + 'KU+TeLDQ4S3SuUAP0TC6LFbDCY0ouzzj381RJXscR1S9p9B0+QF3Or4NcNSlhwMN0AAAA' + '=\n', + 'annotations': [ + { + 'path': 'test/test-4.py', + 'start_line': 4, + 'end_line': 4, + 'annotation_level': 'warning', + 'message': 'unsupported-unicode.xml', + 'title': 'test 4 failed', + 'raw_details': 'failed\n ' + }, + { + 'path': 'test/test-5.py', + 'start_line': 5, + 'end_line': 5, + 'annotation_level': 'warning', + 'message': 'unsupported-unicode.xml', + 'title': 'test 5 failed', + 'raw_details': + 'Some unsupported unicode characters: ' + '헴䜝헱홐㣇㿷䔭\\U0001237a\\U000214ff\\U00020109㦓\n ' + }, + { + 'path': 'test/test-6.py', + 'start_line': 6, + 'end_line': 6, + 'annotation_level': 'failure', + 'message': 'unsupported-unicode.xml', + 'title': 'test 6 with error', + 'raw_details': 'error\n ' + }, + { + 'path': 'test/test-7.py', + 'start_line': 7, + 'end_line': 7, + 'annotation_level': 'failure', + 'message': 'unsupported-unicode.xml', + 'title': 'test 7 with error', + 'raw_details': + 'Some unsupported unicode characters: ' + '헴䜝헱홐㣇㿷䔭\\U0001237a\\U000214ff\\U00020109㦓\n ' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 2 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '2 skipped tests found', + 'raw_details': 'test 2\ntest 3' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 7 tests, see "Raw output" for the full list of tests.', + 'title': '7 tests found', + 'raw_details': + 'test 1 헴䜝헱홐㣇㿷䔭\\U0001237a\\U000214ff\\U00020109㦓\ntest 2\ntest 3\n' + 'test 4\ntest 5\ntest 6\ntest 7' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/with-xml-entities.annotations b/python/test/files/junit-xml/with-xml-entities.annotations new file mode 100644 index 00000000..00bd90a1 --- /dev/null +++ b/python/test/files/junit-xml/with-xml-entities.annotations @@ -0,0 +1,76 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 errors, 1 fail, 2 skipped in 0s', + 'summary': + '4 tests\u2002\u2003\u20030 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20032 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u2003\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n\nResults for ' + 'commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MQQ5AMBBFr' + '9J0bYFYuYw0RUyUyky7Enc3qmV2/72fvFPP4CbSvWoqpSlC+GCMaAL4nbFm5CM8V1f2QN' + 'FaeQ60wsGi/cRswOXaKyZEj9lg3EvvmTL38l9LLGKJZcv6bYPAkJeixejrBpBXIV3dAAA' + 'A\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'with-xml-entities.xml', + 'title': "Test with 'apostrophe' in the test name failed", + 'raw_details': "Content with 'apostrophes'" + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'failure', + 'message': 'with-xml-entities.xml', + 'title': 'Test with & in the test name with error', + 'raw_details': 'Content with &' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 2 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '2 skipped tests found', + 'raw_details': + 'Test with "quotes" in the test name\nTest with < and > in the test ' + 'name' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 4 tests, see "Raw output" for the full list of tests.', + 'title': '4 tests found', + 'raw_details': + 'Test with "quotes" in the test name\nTest with & in the test name\n' + 'Test with \'apostrophe\' in the test name\nTest with < and > in ' + 'the test name' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/junit-xml/xunit/xunit.annotations b/python/test/files/junit-xml/xunit/xunit.annotations new file mode 100644 index 00000000..6a477961 --- /dev/null +++ b/python/test/files/junit-xml/xunit/xunit.annotations @@ -0,0 +1,41 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 2 tests pass in 0s', + 'summary': + '2 tests\u2002\u2003\u20032 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBBEr' + '0KoLdTSyxCCEDfyMQtUxrsLCgrdvJnJO6kCLT1dyDQQ6iOED9aIPICzCceEaQh5mmtmPg' + 'rRFzsc7ZspDrorJKLD0mC01Zdjq3v5tz3cyB5uXcIZAyFBScRvnF43yWbLod0AAAA=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 2 tests, see "Raw output" for the full list of tests.', + 'title': '2 tests found', + 'raw_details': + 'mytestapp.Tests.AttriubteTests.GetTestNoFeature\n' + 'mytestapp.Tests.AttriubteTests.SetTestNoFeature' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/mstest/clicketyclackety.annotations b/python/test/files/nunit/mstest/clicketyclackety.annotations new file mode 100644 index 00000000..158eed63 --- /dev/null +++ b/python/test/files/nunit/mstest/clicketyclackety.annotations @@ -0,0 +1,159 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '10 fail, 12 pass in 0s', + 'summary': + '\u205f\u20041 files\u2004\u2003\u205f\u20048 suites\u2004\u2003\u2002' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n22 ' + 'tests\u200312 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u200310 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n23 runs\u2006\u200313 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u200310 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MSw6AIAxEr' + '0JYu/CzMV7GENTYCGJKWRnvbiEo7Ppmpu+WG5jVy0l0jZA+ACUYGZaAisCdjC0jFxSrvv' + '9g9kHr+FklB1z1ft4UmDgpyYroMG8wnEk55Ps3lqAIE9e+FNQ67awFYsiX8LuSzwvzas/' + 'j4wAAAA==\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'BakeDrawings failed', + 'raw_details': + ' at NUnit.Framework.Assert.Equals(Object a, Object b)\n at ' + 'MyProject.Tests.Real.UserInput.BakeDrawingCommandTests.BakeDrawings' + '()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'SilentRun failed', + 'raw_details': + ' at ' + 'MyProject.Tests.Real.UserInput.ProjectInitCommandTests.SilentRun()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'DiscardDrawingTests failed', + 'raw_details': + ' at System.IO.__Error.WinIOError(Int32 errorCode, String ' + 'maybeFullPath)\n at ' + 'System.IO.FileSystemEnumerableIterator`1.CommonInit()\n at ' + 'System.IO.FileSystemEnumerableIterator`1..ctor(String path, String ' + 'originalUserPath, String searchPattern, SearchOption searchOption, ' + 'SearchResultHandler`1 resultHandler, Boolean checkHost)\n at ' + 'System.IO.Directory.GetFiles(String path)\n at ' + 'MyProject.Tests.Real.FlagTests.DiscardDrawingTests()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'LoadDrawingsEventFlagTests failed', + 'raw_details': ' at MyProject.Tests.Real.FlagTests.LoadDrawingsEventFlagTests()\n' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'ResetProjectEventFlagTests failed', + 'raw_details': ' at MyProject.Tests.Real.FlagTests.ResetProjectEventFlagTests()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'SetupLayersEventFlagTests failed', + 'raw_details': + ' at MyProject.Runtime.Events.SetupLayers.Execute()\n at ' + 'MyProject.Tests.Real.FlagTests.SetupLayersEventFlagTests()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'SetupPipeEventFlagTests failed', + 'raw_details': ' at MyProject.Tests.Real.FlagTests.SetupPipeEventFlagTests()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'DrawingConstants failed', + 'raw_details': ' at MyProject.Tests.Real.RuntimeTests.DrawingConstants()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'FileConstants failed', + 'raw_details': ' at MyProject.Tests.Real.RuntimeTests.FileConstants()' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/clicketyclackety.xml', + 'title': 'PluginConstants failed', + 'raw_details': ' at MyProject.Tests.Real.RuntimeTests.PluginConstants()' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 22 tests, see "Raw output" for the full list of tests.', + 'title': '22 tests found', + 'raw_details': + 'BakeDrawings\nDeleteMyProjectObjectEventFlagTests\n' + 'DiscardDrawingTests\nDisplayGraphicConstants\nDrawingConstants\n' + 'EventRegisterTests\nFileConstants\nLoadDrawingsEventFlagTests\n' + 'LoadedDrawings\nModifyNewObjectUniqueIdEventFlagTests\n' + 'MoveControlPointEventFlagTests\nObjectConstants\nPluginConstants\n' + 'ResetProjectEventFlagTests\nSetupLayersEventFlagTests\n' + 'SetupPipeEventFlagTests\nSilentRun\nTest\nUIPanelConstants\n' + 'UIPropertyConstants\nUpdateDrawingsPanelEventFlagTests\n' + 'UpdatePropertiesPanelEventFlagTests' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/mstest/pickles.annotations b/python/test/files/nunit/mstest/pickles.annotations new file mode 100644 index 00000000..5cc3a2a2 --- /dev/null +++ b/python/test/files/nunit/mstest/pickles.annotations @@ -0,0 +1,79 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 fail, 3 pass in 0s', + 'summary': + '4 tests\u2002\u2003\u20033 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n2 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MOw6AIBBEr' + '0KoLfxVXoYQxLiRj1mgMt7dFSHSzZuZvItvYHTgCxs6xkOCmGEkWBPKCN4R9oQ0xHeaax' + 'YhKUXF9BcHnO1bbBJMUX+FRvRYLphc9b2x1X382zI3ssytS3lrIRKUxMIu+f0AuKmg790' + 'AAAA=\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'mstest/pickles.xml', + 'title': 'Pickles.TestHarness.AdditionFeature.FailToAddTwoNumbers failed', + 'raw_details': + '\n at ' + 'Pickles.TestHarness.xUnit.Steps.ThenTheResultShouldBePass(Int32 ' + 'result) in ' + 'C:\\dev\\pickles-results-harness\\Pickles.TestHarness\\Pickles.TestHarn' + 'ess.NUnit\\Steps.cs:line 26\nat lambda_method(Closure , ' + 'IContextManager , Int32 )\nat ' + 'TechTalk.SpecFlow.Bindings.MethodBinding.InvokeAction(IContextManag' + 'er contextManager, Object[] arguments, ITestTracer testTracer, ' + 'TimeSpan& duration)\nat ' + 'TechTalk.SpecFlow.Bindings.StepDefinitionBinding.Invoke(IContextMan' + 'ager contextManager, ITestTracer testTracer, Object[] arguments, ' + 'TimeSpan& duration)\nat ' + 'TechTalk.SpecFlow.Infrastructure.TestExecutionEngine.ExecuteStepMat' + 'ch(BindingMatch match, Object[] arguments)\nat ' + 'TechTalk.SpecFlow.Infrastructure.TestExecutionEngine.ExecuteStep(St' + 'epArgs stepArgs)\nat ' + 'TechTalk.SpecFlow.Infrastructure.TestExecutionEngine.OnAfterLastSte' + 'p()\nat TechTalk.SpecFlow.TestRunner.CollectScenarioErrors()\nat ' + 'Pickles.TestHarness.AdditionFeature.ScenarioCleanup() in ' + 'C:\\dev\\pickles-results-harness\\Pickles.TestHarness\\Pickles.TestHarn' + 'ess.NUnit\\Addition.feature.cs:line 0\nat ' + 'Pickles.TestHarness.AdditionFeature.FailToAddTwoNumbers() in ' + 'c:\\dev\\pickles-results-harness\\Pickles.TestHarness\\Pickles.TestHarn' + 'ess.NUnit\\Addition.feature:line 18\n\n ' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 4 tests, see "Raw output" for the full list of tests.', + 'title': '4 tests found', + 'raw_details': + 'Pickles.TestHarness.AdditionFeature.AddTwoNumbers\n' + 'Pickles.TestHarness.AdditionFeature.AddingSeveralNumbers("40","50",' + '"90",System.String[])\n' + 'Pickles.TestHarness.AdditionFeature.AddingSeveralNumbers("60","70",' + '"130",System.String[])\n' + 'Pickles.TestHarness.AdditionFeature.FailToAddTwoNumbers' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-correct.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-correct.annotations new file mode 100644 index 00000000..49c62a29 --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-correct.annotations @@ -0,0 +1,115 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 errors, 1 fail, 8 skipped, 18 pass in 0s', + 'summary': + '28 tests\u2002\u2003\u200318 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n11 ' + 'suites\u2003\u2003\u205f\u20048 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20041 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\u2003\u20031 ' + '[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/' + 'blob/v1.20/README.md#the-symbols "test errors")\n\nResults for ' + 'commit commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMMQ6AIAxFr' + '0KYHdTJeBlDUGKjiGlhMt7dIqi49b3fvEMaWCeSvWgqISmATxBpDKg8uI25ZuTFx63tHh' + 'goaB2/C7PAzuYTRsGa60lMiA6zwbC9xXj/gkl8vZuL3M1lTTtrwTPkS9Cs5HkBSPFg+uI' + 'AAAA=\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-correct.xml', + 'title': 'NUnit.Tests.Assemblies.MockTestFixture.FailingTest failed', + 'raw_details': + '\n at ' + 'NUnit.Tests.Assemblies.MockTestFixture.FailingTest () [0x00000] in ' + '/home/charlie/Dev/NUnit/nunit-2.5/work/src/tests/mock-assembly/Mock' + 'Assembly.cs:121\n\n ' + ' ' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'failure', + 'message': 'nunit3/jenkins/NUnit-correct.xml', + 'title': 'NUnit.Tests.Assemblies.MockTestFixture.TestWithException with error', + 'raw_details': + '\n at ' + 'NUnit.Tests.Assemblies.MockTestFixture.TestWithException () ' + '[0x00000] in ' + '/home/charlie/Dev/NUnit/nunit-2.5/work/src/tests/mock-assembly/Mock' + 'Assembly.cs:153\n\n ' + ' ' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 8 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '8 skipped tests found', + 'raw_details': + 'NUnit.Tests.Assemblies.MockTestFixture.InconclusiveTest\n' + 'NUnit.Tests.Assemblies.MockTestFixture.MockTest4\n' + 'NUnit.Tests.Assemblies.MockTestFixture.MockTest5\n' + 'NUnit.Tests.Assemblies.MockTestFixture.NotRunnableTest\n' + 'NUnit.Tests.BadFixture.SomeTest\nNUnit.Tests.IgnoredFixture.Test1\n' + 'NUnit.Tests.IgnoredFixture.Test2\nNUnit.Tests.IgnoredFixture.Test3' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 28 tests, see "Raw output" for the full list of tests.', + 'title': '28 tests found', + 'raw_details': + 'NUnit.Tests.Assemblies.MockTestFixture.FailingTest\n' + 'NUnit.Tests.Assemblies.MockTestFixture.InconclusiveTest\n' + 'NUnit.Tests.Assemblies.MockTestFixture.MockTest1\n' + 'NUnit.Tests.Assemblies.MockTestFixture.MockTest2\n' + 'NUnit.Tests.Assemblies.MockTestFixture.MockTest3\n' + 'NUnit.Tests.Assemblies.MockTestFixture.MockTest4\n' + 'NUnit.Tests.Assemblies.MockTestFixture.MockTest5\n' + 'NUnit.Tests.Assemblies.MockTestFixture.NotRunnableTest\n' + 'NUnit.Tests.Assemblies.MockTestFixture.TestWithException\n' + 'NUnit.Tests.Assemblies.MockTestFixture.TestWithManyProperties\n' + 'NUnit.Tests.BadFixture.SomeTest\n' + 'NUnit.Tests.FixtureWithTestCases.GenericMethod(9.2d,11.7d)\n' + 'NUnit.Tests.FixtureWithTestCases.GenericMethod(2,4)\n' + 'NUnit.Tests.FixtureWithTestCases.MethodWithParameters(2,2)\n' + 'NUnit.Tests.FixtureWithTestCases.MethodWithParameters(9,11)\n' + 'NUnit.Tests.GenericFixture(11.5d).Test1\n' + 'NUnit.Tests.GenericFixture(11.5d).Test2\n' + 'NUnit.Tests.GenericFixture(5).Test1\n' + 'NUnit.Tests.GenericFixture(5).Test2\n' + 'NUnit.Tests.IgnoredFixture.Test1\nNUnit.Tests.IgnoredFixture.Test2\n' + 'NUnit.Tests.IgnoredFixture.Test3\n' + 'NUnit.Tests.ParameterizedFixture(42).Test1\n' + 'NUnit.Tests.ParameterizedFixture(42).Test2\n' + 'NUnit.Tests.ParameterizedFixture(5).Test1\n' + 'NUnit.Tests.ParameterizedFixture(5).Test2\n' + 'NUnit.Tests.Singletons.OneTestCase.TestCase\n' + 'NUnit.Tests.TestAssembly.MockTestFixture.MyTest' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-correct2.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-correct2.annotations new file mode 100644 index 00000000..86c978a4 --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-correct2.annotations @@ -0,0 +1,482 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 183 tests pass in 0s', + 'summary': + '\u205f\u2004\u205f\u20041 files\u2004\u2003102 suites\u2004\u2003\u2002' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n183 ' + 'tests\u2003183 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n218 runs\u2006\u2003' + '218 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/12MSw6AIAwFr' + '0JYu/CzMV7GEITY+MGUsjLe3YoY0V1nXjq7tDAbLztRFUL6AHRDWTMOARWBW1mUjDxRHN' + 'vmod4Hrf9qgi3/6K2C+SMMosNkMKxXs67aBE8yN28xchaMnPe0WxYghnQJPyp5nNtosNP' + 'nAAAA\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 183 tests, see "Raw output" for the full list of tests.', + 'title': '183 tests found', + 'raw_details': + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+Clone.should' + '_return_different_object\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+Clone.should' + '_return_same_value\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+MutableCompo' + 'nents.should_return_empty\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+Nudge.should' + '_change_value_in_range(100,-10,1)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+Nudge.should' + '_change_value_in_range(100,-100,1)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+Nudge.should' + '_change_value_in_range(100,-2,8)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+Nudge.should' + '_change_value_in_range(100,2,12)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+Nudge.should' + '_change_value_in_range(1000,1000,321)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AmountTests+RandomizeVal' + 'ues.should_randomize_value_in_range\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+Clone.should_' + 'return_different_object\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+Clone.should_' + 'return_same_value\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+MutableCompon' + 'ents.should_return_empty\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+Nudge.should_' + 'wrap_by_a_value_between_1_and_max_value_in_both_directions(10,355,T' + 'rue,5)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+Nudge.should_' + 'wrap_by_a_value_between_1_and_max_value_in_both_directions(10,40,Fa' + 'lse,330)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+Nudge.should_' + 'wrap_by_a_value_between_1_and_max_value_in_both_directions(10,40,Tr' + 'ue,50)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+Nudge.should_' + 'wrap_by_a_value_between_1_and_max_value_in_both_directions(10,6,Fal' + 'se,4)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.AngleTests+RandomizeValu' + 'e.should_select_a_value_between_0_and_360\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+Clone.should_' + 'clone_component\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+Clone.should_' + 'copy_values\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+Constructor.s' + 'hould_initialize_data\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+ImplicitConve' + 'rsionToDrawingColor.should_convert_to_drawing_color\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+MutableCompon' + 'ents.should_not_contain_anything\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+RandomizeAlph' + 'a.should_randomize_alpha_in_range\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+RandomizeBlue' + '.should_randomize_alpha_in_range\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+RandomizeGree' + 'n.should_randomize_alpha_in_range\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+RandomizeRed.' + 'should_randomize_alpha_in_range\n' + 'imG.Approx.Tests.Components.BuildingBlocks.ColorTests+RandomizeValu' + 'es.should_randomize_colors_in_the_range\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+Clone.shoul' + 'd_return_different_object\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+Clone.shoul' + 'd_return_same_value\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+MutableComp' + 'onents.should_return_empty\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+Nudge.shoul' + 'd_change_value_in_range(100,-10,1)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+Nudge.shoul' + 'd_change_value_in_range(100,-100,1)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+Nudge.shoul' + 'd_change_value_in_range(100,-2,8)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+Nudge.shoul' + 'd_change_value_in_range(100,10,16)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+Nudge.shoul' + 'd_change_value_in_range(100,2,12)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PenSizeTests+RandomizeVa' + 'lues.should_randomize_value_in_range\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+Clone.shou' + 'ld_return_different_object\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+Clone.shou' + 'ld_return_same_value\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+MutableCom' + 'ponents.should_return_empty\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+Nudge.shou' + 'ld_change_value_in_range(10,10,1,False,9,9)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+Nudge.shou' + 'ld_change_value_in_range(10,10,1,True,11,11)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+Nudge.shou' + 'ld_change_value_in_range(10,10,100,False,0,0)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+Nudge.shou' + 'ld_change_value_in_range(10,10,1000,True,321,654)\n' + 'imG.Approx.Tests.Components.BuildingBlocks.PositionTests+RandomizeV' + 'alues.should_return_value_inside_target_limits\n' + 'imG.Approx.Tests.Components.DrawingTest+Clone.should_clone_all_shap' + 'es\n' + 'imG.Approx.Tests.Components.DrawingTest+Clone.should_clone_inner_co' + 'mponents\n' + 'imG.Approx.Tests.Components.DrawingTest+Clone.should_copy_propertie' + 's\n' + 'imG.Approx.Tests.Components.DrawingTest+Clone.should_create_clone_o' + 'f_target\n' + 'imG.Approx.Tests.Components.DrawingTest+Constructor.should_keep_dat' + 'a\n' + 'imG.Approx.Tests.Components.DrawingTest+Draw.should_draw_all_shapes' + '\n' + 'imG.Approx.Tests.Components.DrawingTest+Draw.should_fill_image_with' + '_background_color\n' + 'imG.Approx.Tests.Components.DrawingTest+Draw.should_return_correct_' + 'size_image\n' + 'imG.Approx.Tests.Components.DrawingTest+MutableComponents.should_co' + 'ntain_all_shapes\n' + 'imG.Approx.Tests.Components.DrawingTest+MutableComponents.should_co' + 'ntain_color\n' + 'imG.Approx.Tests.Components.Shapes.AreaTests+Clone.should_return_di' + 'fferent_object(System.Func`2[imG.Approx.Components.Shapes.Area,Syst' + 'em.Object])\n' + 'imG.Approx.Tests.Components.Shapes.AreaTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.AreaTests+InitializeComponents.s' + 'hould_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.AreaTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Area,imG.Approx.C' + 'omponents.BuildingBlocks.Angle)\n' + 'imG.Approx.Tests.Components.Shapes.AreaTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Area,imG.Approx.C' + 'omponents.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.AreaTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Area,imG.Approx.C' + 'omponents.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Components.Shapes.BezierTests+Clone.should_return_' + 'different_object(System.Func`2[imG.Approx.Components.Shapes.Bezier,' + 'System.Object])\n' + 'imG.Approx.Tests.Components.Shapes.BezierTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.BezierTests+InitializeComponents' + '.should_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.BezierTests+MutableComponents.sh' + 'ould_return_components(imG.Approx.Components.Shapes.Bezier,imG.Appr' + 'ox.Components.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.BezierTests+MutableComponents.sh' + 'ould_return_components(imG.Approx.Components.Shapes.Bezier,imG.Appr' + 'ox.Components.BuildingBlocks.PenSize)\n' + 'imG.Approx.Tests.Components.Shapes.BezierTests+MutableComponents.sh' + 'ould_return_components(imG.Approx.Components.Shapes.Bezier,imG.Appr' + 'ox.Components.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Components.Shapes.BlobTests+Clone.should_return_di' + 'fferent_object(System.Func`2[imG.Approx.Components.Shapes.Blob,Syst' + 'em.Object])\n' + 'imG.Approx.Tests.Components.Shapes.BlobTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.BlobTests+InitializeComponents.s' + 'hould_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.BlobTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Blob,imG.Approx.C' + 'omponents.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.BlobTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Blob,imG.Approx.C' + 'omponents.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Components.Shapes.CircleTests+Clone.should_return_' + 'different_object(System.Func`2[imG.Approx.Components.Shapes.Circle,' + 'System.Object])\n' + 'imG.Approx.Tests.Components.Shapes.CircleTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.CircleTests+InitializeComponents' + '.should_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.CircleTests+MutableComponents.sh' + 'ould_return_components(imG.Approx.Components.Shapes.Circle,imG.Appr' + 'ox.Components.BuildingBlocks.Amount)\n' + 'imG.Approx.Tests.Components.Shapes.CircleTests+MutableComponents.sh' + 'ould_return_components(imG.Approx.Components.Shapes.Circle,imG.Appr' + 'ox.Components.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.CircleTests+MutableComponents.sh' + 'ould_return_components(imG.Approx.Components.Shapes.Circle,imG.Appr' + 'ox.Components.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ConcreteFactory.ShapeF' + 'actoryTests+GetShape.should_return_shape\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ConcreteFactory.ShapeF' + 'actoryTests+Name.should_return_name_by_default\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ShapeFactoryCatalogTes' + 'ts+ActiveFactories.should_return_only_active_factories\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ShapeFactoryCatalogTes' + 'ts+Disable.should_enable_factories_named\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ShapeFactoryCatalogTes' + 'ts+DisableAll.should_disable_all_factories\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ShapeFactoryCatalogTes' + 'ts+Enable.should_enable_factories_named\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ShapeFactoryCatalogTes' + 'ts+EnableAll.should_enable_all_factories\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ShapeFactoryCatalogTes' + 'ts+Register.should_add_factory\n' + 'imG.Approx.Tests.Components.Shapes.Factories.ShapeFactoryCatalogTes' + 'ts+RegisterAllFactories.should_register_all_factories\n' + 'imG.Approx.Tests.Components.Shapes.LineTests+Clone.should_return_di' + 'fferent_object(System.Func`2[imG.Approx.Components.Shapes.Line,Syst' + 'em.Object])\n' + 'imG.Approx.Tests.Components.Shapes.LineTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.LineTests+InitializeComponents.s' + 'hould_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.LineTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Line,imG.Approx.C' + 'omponents.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.LineTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Line,imG.Approx.C' + 'omponents.BuildingBlocks.PenSize)\n' + 'imG.Approx.Tests.Components.Shapes.LineTests+MutableComponents.shou' + 'ld_return_components(imG.Approx.Components.Shapes.Line,imG.Approx.C' + 'omponents.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Components.Shapes.PolygonTests+Clone.should_return' + '_different_object(System.Func`2[imG.Approx.Components.Shapes.Polygo' + 'n,System.Object])\n' + 'imG.Approx.Tests.Components.Shapes.PolygonTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.PolygonTests+InitializeComponent' + 's.should_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.PolygonTests+MutableComponents.s' + 'hould_return_components(imG.Approx.Components.Shapes.Polygon,imG.Ap' + 'prox.Components.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.PolygonTests+MutableComponents.s' + 'hould_return_components(imG.Approx.Components.Shapes.Polygon,imG.Ap' + 'prox.Components.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Components.Shapes.RectangleTests+Clone.should_retu' + 'rn_different_object(System.Func`2[imG.Approx.Components.Shapes.Rect' + 'angle,System.Object])\n' + 'imG.Approx.Tests.Components.Shapes.RectangleTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.RectangleTests+InitializeCompone' + 'nts.should_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.RectangleTests+MutableComponents' + '.should_return_components(imG.Approx.Components.Shapes.Rectangle,im' + 'G.Approx.Components.BuildingBlocks.Amount)\n' + 'imG.Approx.Tests.Components.Shapes.RectangleTests+MutableComponents' + '.should_return_components(imG.Approx.Components.Shapes.Rectangle,im' + 'G.Approx.Components.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.RectangleTests+MutableComponents' + '.should_return_components(imG.Approx.Components.Shapes.Rectangle,im' + 'G.Approx.Components.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Components.Shapes.TriangleTests+Clone.should_retur' + 'n_different_object(System.Func`2[imG.Approx.Components.Shapes.Trian' + 'gle,System.Object])\n' + 'imG.Approx.Tests.Components.Shapes.TriangleTests+Draw.should_draw\n' + 'imG.Approx.Tests.Components.Shapes.TriangleTests+InitializeComponen' + 'ts.should_randomize_elements\n' + 'imG.Approx.Tests.Components.Shapes.TriangleTests+MutableComponents.' + 'should_return_components(imG.Approx.Components.Shapes.Triangle,imG.' + 'Approx.Components.BuildingBlocks.Color)\n' + 'imG.Approx.Tests.Components.Shapes.TriangleTests+MutableComponents.' + 'should_return_components(imG.Approx.Components.Shapes.Triangle,imG.' + 'Approx.Components.BuildingBlocks.Position)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+ChooseMutation.should_return' + '_mutation_description_determined_by_random_provider(System.Collecti' + 'ons.Generic.Dictionary`2[imG.Approx.Mutation.IMutationDescription,S' + 'ystem.Collections.Generic.List`1[imG.Approx.Mutation.IMutable]],Cas' + 'tle.Proxies.IMutationDescriptionProxy,Castle.Proxies.IMutableProxy,' + '0,0)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+ChooseMutation.should_return' + '_mutation_description_determined_by_random_provider(System.Collecti' + 'ons.Generic.Dictionary`2[imG.Approx.Mutation.IMutationDescription,S' + 'ystem.Collections.Generic.List`1[imG.Approx.Mutation.IMutable]],Cas' + 'tle.Proxies.IMutationDescriptionProxy,Castle.Proxies.IMutableProxy,' + '0,1)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+ChooseMutation.should_return' + '_mutation_description_determined_by_random_provider(System.Collecti' + 'ons.Generic.Dictionary`2[imG.Approx.Mutation.IMutationDescription,S' + 'ystem.Collections.Generic.List`1[imG.Approx.Mutation.IMutable]],Cas' + 'tle.Proxies.IMutationDescriptionProxy,Castle.Proxies.IMutableProxy,' + '6,0)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+ChooseMutation.should_return' + '_mutation_description_determined_by_random_provider(System.Collecti' + 'ons.Generic.Dictionary`2[imG.Approx.Mutation.IMutationDescription,S' + 'ystem.Collections.Generic.List`1[imG.Approx.Mutation.IMutable]],Cas' + 'tle.Proxies.IMutationDescriptionProxy,Castle.Proxies.IMutableProxy,' + '6,1)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+ChooseMutation.should_return' + '_mutation_description_determined_by_random_provider(System.Collecti' + 'ons.Generic.Dictionary`2[imG.Approx.Mutation.IMutationDescription,S' + 'ystem.Collections.Generic.List`1[imG.Approx.Mutation.IMutable]],Cas' + 'tle.Proxies.IMutationDescriptionProxy,Castle.Proxies.IMutableProxy,' + '7,0)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+ChooseMutation.should_return' + '_mutation_description_determined_by_random_provider(System.Collecti' + 'ons.Generic.Dictionary`2[imG.Approx.Mutation.IMutationDescription,S' + 'ystem.Collections.Generic.List`1[imG.Approx.Mutation.IMutable]],Cas' + 'tle.Proxies.IMutationDescriptionProxy,Castle.Proxies.IMutableProxy,' + '7,1)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+ChooseMutation.should_return' + '_null_if_no_mutation_exists\n' + 'imG.Approx.Tests.Mutation.MutagenTests+GetMutationsFor.should_retur' + 'n_active_and_applicable_and_selectable_mutations\n' + 'imG.Approx.Tests.Mutation.MutagenTests+GetMutationsFor.should_retur' + 'n_empty_if_mutable_is_unknown\n' + 'imG.Approx.Tests.Mutation.MutagenTests+GetMutationsFor.should_retur' + 'n_mutations_recursively\n' + 'imG.Approx.Tests.Mutation.MutagenTests+NoOpDescription.should_alway' + 's_have_occasions_to_mutate\n' + 'imG.Approx.Tests.Mutation.MutagenTests+NoOpDescription.should_alway' + 's_mutate_without_doing_anything_to_the_target\n' + 'imG.Approx.Tests.Mutation.MutagenTests+NoOpDescription.should_alway' + 's_target_IMutableType\n' + 'imG.Approx.Tests.Mutation.MutagenTests+NoOpDescription.should_be_al' + 'ways_able_to_mutate\n' + 'imG.Approx.Tests.Mutation.MutagenTests+NoOpDescription.should_be_al' + 'ways_active\n' + 'imG.Approx.Tests.Mutation.MutagenTests+SelectMutation.should_return' + '_a_mutation\n' + 'imG.Approx.Tests.Mutation.MutagenTests+SelectMutation.should_return' + '_matching_selected_mutation\n' + 'imG.Approx.Tests.Mutation.MutagenTests+SelectMutation.should_return' + '_the_default_mutation_if_no_mutation_exists\n' + 'imG.Approx.Tests.Mutation.MutagenTests+SelectMutation.should_throw_' + 'if_any_component_is_null(imG.Approx.Mutation.Process,null)\n' + 'imG.Approx.Tests.Mutation.MutagenTests+SelectMutation.should_throw_' + 'if_any_component_is_null(null,Castle.Proxies.IMutableProxy)\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionCatalogTest+DeclareMut' + 'ation.should_add_description_to_catalog\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionCatalogTest+DeclareMut' + 'ation.should_throw_when_the_same_description_is_declared_twice\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionCatalogTest+For.should' + '_return_empty_list_for_unknown_mutable_type\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionCatalogTest+For.should' + '_return_list_of_descriptions_for_type(imG.Approx.Tests.Mutation.Mut' + 'ableAndDescription.Mutable1,imG.Approx.Mutation.MutationDescription' + '`1[imG.Approx.Tests.Mutation.MutableAndDescription.Mutable1],imG.Ap' + 'prox.Mutation.MutationDescription`1[imG.Approx.Tests.Mutation.Mutab' + 'leAndDescription.Mutable2])\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionCatalogTest+For.should' + '_return_list_of_descriptions_for_type(imG.Approx.Tests.Mutation.Mut' + 'ableAndDescription.Mutable2,imG.Approx.Mutation.MutationDescription' + '`1[imG.Approx.Tests.Mutation.MutableAndDescription.Mutable2],imG.Ap' + 'prox.Mutation.MutationDescription`1[imG.Approx.Tests.Mutation.Mutab' + 'leAndDescription.Mutable3])\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionCatalogTest+For.should' + '_return_list_of_descriptions_for_type(imG.Approx.Tests.Mutation.Mut' + 'ableAndDescription.Mutable3,imG.Approx.Mutation.MutationDescription' + '`1[imG.Approx.Tests.Mutation.MutableAndDescription.Mutable3],imG.Ap' + 'prox.Mutation.MutationDescription`1[imG.Approx.Tests.Mutation.Mutab' + 'leAndDescription.Mutable1])\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionCatalogTest+RegisterAl' + 'lMutations.should_register_all_mutations_declared_by_registrars\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionTests+CanMutate.lambda' + '_is_called_when_checking\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionTests+Constructor.shou' + 'ld_refuse_odds_that_are_not_positive(-1)\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionTests+Constructor.shou' + 'ld_refuse_odds_that_are_not_positive(-1000)\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionTests+Constructor.shou' + 'ld_refuse_odds_that_are_not_positive(0)\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionTests+GetMutationTarge' + 'tType.should_return_type_of_generic\n' + 'imG.Approx.Tests.Mutation.MutationDescriptionTests+Mutate.lambda_is' + '_called_when_mutating\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Constructor.should_throw_if_' + 'any_argument_is_null(Castle.Proxies.IRandomizationProviderProxy,Cas' + 'tle.Proxies.IMutationDescriptionCatalogProxy,Castle.Proxies.ITarget' + 'Proxy,null)\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Constructor.should_throw_if_' + 'any_argument_is_null(Castle.Proxies.IRandomizationProviderProxy,Cas' + 'tle.Proxies.IMutationDescriptionCatalogProxy,null,Castle.Proxies.IS' + 'hapeFactoryCatalogProxy)\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Constructor.should_throw_if_' + 'any_argument_is_null(Castle.Proxies.IRandomizationProviderProxy,nul' + 'l,Castle.Proxies.ITargetProxy,Castle.Proxies.IShapeFactoryCatalogPr' + 'oxy)\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Constructor.should_throw_if_' + 'any_argument_is_null(null,Castle.Proxies.IMutationDescriptionCatalo' + 'gProxy,Castle.Proxies.ITargetProxy,Castle.Proxies.IShapeFactoryCata' + 'logProxy)\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Mutate.should_always_keep_be' + 'st_drawing_according_to_distance(False)\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Mutate.should_always_keep_be' + 'st_drawing_according_to_distance(True)\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Mutate.should_increase_evolu' + 'tions_when_drawing_is_better\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Mutate.should_increase_gener' + 'ation_number\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Mutate.should_trigger_event_' + 'when_drawing_is_better\n' + 'imG.Approx.Tests.Mutation.ProcessTests+Mutate.should_trigger_event_' + 'when_drawing_is_worse\n' + 'imG.Approx.Tests.Mutation.ProcessTests+SetupDrawing.should_compute_' + 'the_distance_only_the_first_time\n' + 'imG.Approx.Tests.Mutation.ProcessTests+SetupDrawing.should_create_d' + 'rawing_based_on_target\n' + 'imG.Approx.Tests.Mutation.ProcessTests+SetupDrawing.should_create_t' + 'he_drawing_only_the_first_time\n' + 'imG.Approx.Tests.Mutation.RandomizationProviderTests+Constructor.sh' + 'ould_keep_the_seed\n' + 'imG.Approx.Tests.Mutation.RandomizationProviderTests+Next.should_re' + 'turn_integer\n' + 'imG.Approx.Tests.Mutation.TargetTests+Constructor.should_keep_initi' + 'alized_data(System.Func`2[imG.Approx.Mutation.Target,System.Object]' + ',"data\\\\red.png")\n' + 'imG.Approx.Tests.Mutation.TargetTests+Constructor.should_keep_initi' + 'alized_data(System.Func`2[imG.Approx.Mutation.Target,System.Object]' + ',25)\n' + 'imG.Approx.Tests.Mutation.TargetTests+DistanceTo.should_not_throw_i' + 'f_dimensions_are_identical\n' + 'imG.Approx.Tests.Mutation.TargetTests+DistanceTo.should_throw_if_di' + 'mensions_are_different(imG.Approx.Components.Drawing)\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_load_dim' + 'ensions_from_image\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_load_ima' + 'ge_data\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_not_resi' + 'ze_if_image_dimensions_are_over_or_equal_to_maxDimension(100)\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_not_resi' + 'ze_if_image_dimensions_are_over_or_equal_to_maxDimension(50)\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_resize_i' + 'f_image_dimensions_are_over_maxDimension\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_set_rati' + 'o_to_correct_value_when_loading(10,0.2f)\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_set_rati' + 'o_to_correct_value_when_loading(25,0.5f)\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_set_rati' + 'o_to_correct_value_when_loading(50,1.0f)\n' + 'imG.Approx.Tests.Mutation.TargetTests+LoadImageData.should_set_rati' + 'o_to_correct_value_when_loading(99,1.0f)\n' + 'imG.Approx.Tests.Mutation.TargetTests+Name.should_return_filename\n' + 'imG.Approx.Tests.Tools.TestValues+Clamp.should_return_max_value_bet' + 'ween_original_and_min_value(1,0,1)\n' + 'imG.Approx.Tests.Tools.TestValues+Clamp.should_return_max_value_bet' + 'ween_original_and_min_value(1,1,1)\n' + 'imG.Approx.Tests.Tools.TestValues+Clamp.should_return_max_value_bet' + 'ween_original_and_min_value(1,10,10)\n' + 'imG.Approx.Tests.Tools.TestValues+Clamp.should_return_min_value_bet' + 'ween_original_and_max_value(1,0,0)\n' + 'imG.Approx.Tests.Tools.TestValues+Clamp.should_return_min_value_bet' + 'ween_original_and_max_value(1,1,1)\n' + 'imG.Approx.Tests.Tools.TestValues+Clamp.should_return_min_value_bet' + 'ween_original_and_max_value(1,10,1)\n' + 'imG.Approx.Tests.Tools.TestValues+Clamp.should_throw_if_min_is_abov' + 'e_max\n' + 'imG.Approx.Tests.Tools.TestValues+Wrap.should_throw_if_min_is_above' + '_max\n' + 'imG.Approx.Tests.Tools.TestValues+Wrap.should_wrap_back_to_range(-1' + '01,10,20,19)\n' + 'imG.Approx.Tests.Tools.TestValues+Wrap.should_wrap_back_to_range(10' + ',10,25,10)\n' + 'imG.Approx.Tests.Tools.TestValues+Wrap.should_wrap_back_to_range(10' + '1,10,20,11)\n' + 'imG.Approx.Tests.Tools.TestValues+Wrap.should_wrap_back_to_range(16' + ',10,25,16)\n' + 'imG.Approx.Tests.Tools.TestValues+Wrap.should_wrap_back_to_range(25' + ',10,25,10)' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-correct3.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-correct3.annotations new file mode 100644 index 00000000..d8d9be10 --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-correct3.annotations @@ -0,0 +1,67 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 22 tests pass in 4m 24s', + 'summary': + '22 tests\u2002\u2003\u200322 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '4m 24s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n13 ' + 'suites\u2003\u2003\u205f\u20040 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u2003\u205f\u20040 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/12MOw6AIBAFr' + '0KoLRSNhZcxBDVuFDELVMa7uwh+uzfzktn4AHNvecOKjHHrwUUoiTqP0oFZiEVdkaDPhV' + 'eIC1rrlfqZCVYy+S0GCfNH9IgGk0G/3MWwP8Eont7Jr9zJ75oyWoMjSIvZUfL9APCIHb/' + 'kAAAA\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 22 tests, see "Raw output" for the full list of tests.', + 'title': '22 tests found', + 'raw_details': + 'BlogEngine.Tests.Account.Login.InvalidLoginShouldFail\n' + 'BlogEngine.Tests.Account.Login.ValidLoginShouldPass\n' + 'BlogEngine.Tests.Comments.Comment.CanAddUpdateAndDeleteComment\n' + 'BlogEngine.Tests.FileSystem.Crud.CanWriteAndReadAppCodeDirectory\n' + 'BlogEngine.Tests.FileSystem.Crud.CanWriteAndReadAppDataDirectory\n' + 'BlogEngine.Tests.Navigation.CustomPages.CanNavigateToCustomAspxPage' + '\n' + 'BlogEngine.Tests.Navigation.CustomPages.CanNavigateToDefaultAspxPag' + 'eInSubDiretory\nBlogEngine.Tests.Navigation.SubBlog.MyTest\n' + 'BlogEngine.Tests.Navigation.SubBlogAggregation.MyTest\n' + 'BlogEngine.Tests.Packaging.Installer.CanInstallAndUninstallTheme\n' + 'BlogEngine.Tests.Posts.Post.CanCreateAndDeletePost\n' + 'BlogEngine.Tests.QuickNotes.Crud.ShouldBeAbleToCreateUpdateAndDelet' + 'eNote\n' + 'BlogEngine.Tests.QuickNotes.Navigation.AdminShouldSeeQuickNotesPane' + 'l\n' + 'BlogEngine.Tests.QuickNotes.Navigation.AnonymousUserShouldNotSeeQui' + 'ckNotesPanel\n' + 'BlogEngine.Tests.QuickNotes.Navigation.ShouldBeAbleBrowseThroughTab' + 's\nBlogEngine.Tests.QuickNotes.Posting.PublishQuickNoteAsPost\n' + 'BlogEngine.Tests.Quixote.Runner.RunAvatarTests\n' + 'BlogEngine.Tests.Quixote.Runner.RunPackagingTests\n' + 'BlogEngine.Tests.Quixote.Runner.RunPagerTests\n' + 'BlogEngine.Tests.Quixote.Runner.RunUrlRewriteNoExtensionsTests\n' + 'BlogEngine.Tests.Quixote.Runner.RunUrlRewriteTests\n' + 'BlogEngine.Tests.Users.AuthorProfile.CanAddUpdateAndDeleteUserProfi' + 'le' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-failure.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-failure.annotations new file mode 100644 index 00000000..765628a4 --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-failure.annotations @@ -0,0 +1,59 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 fail, 2 pass in 0s', + 'summary': + '3 tests\u2002\u2003\u20032 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MOw6AIBBEr' + '0KoLfx0XoYQ1LhRwCxQGe/uykfo5s1M3s03OFfHZzZ0jLsA/ocloPRgDWFPSIP/pqlk4Y' + 'JSVIy1OOBq32KTcGZbKlZEi/mCwRTfF1td4mqL3Mgity5ltQZPkBNzu+TPC/n9SCLdAAA' + 'A\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-failure.xml', + 'title': 'UnitTests.MainClassTest.TestFailure failed', + 'raw_details': + ' at UnitTests.MainClassTest.TestFailure () [0x00000] \n at ' + '<0x00000> \n at (wrapper managed-to-native) ' + 'System.Reflection.MonoMethod:InternalInvoke (object,object[])\n ' + 'at System.Reflection.MonoMethod.Invoke (System.Object obj, ' + 'BindingFlags invokeAttr, System.Reflection.Binder binder, ' + 'System.Object[] parameters, System.Globalization.CultureInfo ' + 'culture) [0x00000] \n' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 3 tests, see "Raw output" for the full list of tests.', + 'title': '3 tests found', + 'raw_details': + 'UnitTests.MainClassTest.TestFailure\n' + 'UnitTests.MainClassTest.TestMethodUpdateValue\n' + 'UnitTests.MainClassTest.TestPropertyValue' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-healthReport.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-healthReport.annotations new file mode 100644 index 00000000..eaa434ec --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-healthReport.annotations @@ -0,0 +1,65 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '1 fail, 9 pass in 1s', + 'summary': + '10 tests\u2002\u2003\u20039 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '1s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n\u205f\u2004' + '1 suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004' + '1 files\u2004\u2002\u2003\u20031 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MQQ6AIAwEv' + '0I4e9CjfoYQhNgoYAqcjH8XEaG3zu52Lm7g0IEvbBoYDwligzWhjOBdxVzEUo0/iJCUys' + 'ncgx3OHPSFkXDQf6ERPdYJJteE7019H3ddYWIrTGXKWwsxQ71Y2CS/HxbYkAffAAAA\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-healthReport.xml', + 'title': 'UnitTests.MainClassTest.TestFailure failed', + 'raw_details': + ' at UnitTests.MainClassTest.TestFailure () [0x00000]\n at ' + '<0x00000> \n at (wrapper managed-to-native) ' + 'System.Reflection.MonoMethod:InternalInvoke (object,object[])\n ' + 'at System.Reflection.MonoMethod.Invoke (System.Object obj, ' + 'BindingFlags invokeAttr, System.Reflection.Binder binder, ' + 'System.Object[] parameters, System.Globalization.CultureInfo ' + 'culture) [0x00000]\n' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 10 tests, see "Raw output" for the full list of tests.', + 'title': '10 tests found', + 'raw_details': + 'UnitTests.MainClassTest.TestFailure\n' + 'UnitTests.MainClassTest.TestMethodUpdateValue\n' + 'UnitTests.MainClassTest.TestPropertyValue\n' + 'UnitTests.MainClassTest.TestPropertyValue1\n' + 'UnitTests.MainClassTest.TestPropertyValue2\n' + 'UnitTests.MainClassTest.TestPropertyValue3\n' + 'UnitTests.MainClassTest.TestPropertyValue4\n' + 'UnitTests.MainClassTest.TestPropertyValue5\n' + 'UnitTests.MainClassTest.TestPropertyValue6\n' + 'UnitTests.MainClassTest.TestPropertyValue7' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-ignored.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-ignored.annotations new file mode 100644 index 00000000..d4d7d288 --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-ignored.annotations @@ -0,0 +1,56 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 1 tests pass, 2 skipped in 0s', + 'summary': + '3 tests\u2002\u2003\u20031 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '0s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20032 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MSw6AIAxEr' + '0JYu/Cz8zKGIMRGBdPCynh3KyKymzfTvlNa2AzJUXSNkBQhFJgjqgDeMbaMPIRnGr48Ud' + 'Q63+ZihYOLvhRWwVa/TwbRY24wus/3xFr38m9LXMkS1y7t9x0CQ06CFiWvGx5uWF7dAAA' + 'A\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There are 2 skipped tests, see "Raw output" for the full list of ' + 'skipped tests.', + 'title': '2 skipped tests found', + 'raw_details': + 'UnitTests.OtherMainClassTest.TestIgnored\n' + 'UnitTests.OtherMainClassTest.TestIgnoredWithText' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 3 tests, see "Raw output" for the full list of tests.', + 'title': '3 tests found', + 'raw_details': + 'UnitTests.OtherMainClassTest.TestIgnored\n' + 'UnitTests.OtherMainClassTest.TestIgnoredWithText\n' + 'UnitTests.OtherMainClassTest.TestPropertyValue' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-issue1077.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-issue1077.annotations new file mode 100644 index 00000000..c8ca292a --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-issue1077.annotations @@ -0,0 +1,45 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 6 tests pass in 35s', + 'summary': + '6 tests\u2002\u2003\u20036 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u2003\u2003' + '35s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n1 ' + 'suites\u2003\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\n1 files\u2004' + '\u2002\u2003\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMwQqAIBAFf' + '0U8dyiiDv1MiBktpcaqp+jf20pLb2/mwRx8hk05PrCmYtwF8B9MAYUHawjbjpgef3992q' + 'MLUpZihZ1E/YlZwFYIhWgxGgwm9e6Z517+aw9nsYfzlrRagyeIi7lF8PMC7eTeEN4AAAA' + '=\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 6 tests, see "Raw output" for the full list of tests.', + 'title': '6 tests found', + 'raw_details': + 'testChangePassword\ntestChangePasswordFailEmptyForm\n' + 'testChangePasswordFailNewPasswordKO\n' + 'testChangePasswordFailNewPasswordNotRepeated\n' + 'testChangePasswordFailNewPasswordTooShort\n' + 'testChangePasswordFailOldPasswordKO' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-issue33493.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-issue33493.annotations new file mode 100644 index 00000000..1d83c206 --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-issue33493.annotations @@ -0,0 +1,57 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'success', + 'output': { + 'title': 'All 1 tests pass, 1 skipped in 6s', + 'summary': + '1 files\u2004\u20032 suites\u2004\u2003\u20026s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n2 ' + 'tests\u20031 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20031 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n2 runs\u2006\u20032 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u20030 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMMQ6AIBAEv' + '0KoLdTCws8YghAvIpgDKuPfPREUu505mINrMMrzkXUN4z5CSNATzBFFAGcJB0I6hHJKe/' + 'JRyvwxixX2n9ACDIn2FQrRYTYYbends+Q+fmrlaR1LXLek2zYIBHkxvwh+XlEX1VPdAAA' + 'A\n', + 'annotations': [ + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': + 'There is 1 skipped test, see "Raw output" for the name of the ' + 'skipped test.', + 'title': '1 skipped test found', + 'raw_details': 'AddTwoNumbers' + }, + { + 'path': '.github', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'notice', + 'message': 'There are 2 tests, see "Raw output" for the full list of tests.', + 'title': '2 tests found', + 'raw_details': + 'AddTwoNumbers\n' + 'SubSmokeTest("Geo","Geonw","dev1234567",System.String[])' + } + ] + } + } +] \ No newline at end of file diff --git a/python/test/files/nunit/nunit3/jenkins/NUnit-issue44527.annotations b/python/test/files/nunit/nunit3/jenkins/NUnit-issue44527.annotations new file mode 100644 index 00000000..5d0cea9d --- /dev/null +++ b/python/test/files/nunit/nunit3/jenkins/NUnit-issue44527.annotations @@ -0,0 +1,4542 @@ +[ + { + 'name': 'Test Results', + 'head_sha': 'commit sha', + 'status': 'completed', + 'conclusion': 'failure', + 'output': { + 'title': '140 fail, 6 pass in 14m 11s', + 'summary': + '\u205f\u2004\u205f\u20041 files\u2004\u2003155 suites\u2004\u2003\u2002' + '14m 11s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n146 ' + 'tests\u2003\u205f\u2004\u205f\u20046 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u2003140 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n150 runs\u2006\u2003\u205f\u2004\u205f\u2004' + '6 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u2003144 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02NSw6AIAwFr' + '0JYu9BEjPEyhqDExg+mwMp4dysfZdeZ175eXMM2Wz6wpmLcenARhCCcPEoH5iDRizen0I' + 'W47TKN1itFqhArnCTqT2gJWzj61YxoMC2hP+LLDGVl5L8x8FfYZlP2KbPv4AjSxOwi+f0' + 'AEAq2iOkAAAA=\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_MR_Grid_GridViewValidation(True,"chrome","/#/tasks/access' + '-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks._My_Requests.Grid.GridValidation.UI' + '_MyTask_MR_Grid_GridViewValidation(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\My Requests\\Grid\\GridValidation.cs:line 29\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': + 'nunit3/jenkins/NUnit-issue44527.xml\n' + 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'All 2 runs failed: ' + 'UI_MyTask_MR_Grid_Paging(True,"chrome","/#/tasks/access-certificati' + 'on/overview")', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks._My_Requests.Grid.GridValidation.UI' + '_MyTask_MR_Grid_Paging(Boolean excute, String browserName, String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\My Requests\\Grid\\GridValidation.cs:line 65' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTasks_MR_Paging_ShowPerPage(True,"chrome","/#/tasks/access-req' + 'uest/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks._My_Requests.Paging.PagingValidatio' + 'n.UI_MyTasks_MR_Paging_ShowPerPage(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\My Requests\\Paging\\PagingValidation.cs:line 30\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_OE_Grid_GridViewValidation(True,"chrome","/#/tasks/access' + '-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks._Owner_Election.Grid.GridValidation' + '.UI_MyTask_OE_Grid_GridViewValidation(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Owner Election\\Grid\\GridValidation.cs:line 28' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTasks_OE_ViewOwnersElection("/#/tasks/owners-election/overview' + '") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at ' + 'MyCompanyUiSettings.Bl.OwnersElectionPage.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Owne' + 'rsElectionPage.cs:line 175\n at ' + 'MyCompanyUiSettings.Bl.OwnersElectionPage..ctor(IWebDriver driver) ' + 'in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Owne' + 'rsElectionPage.cs:line 145\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks._Owner_Election.Paging.PagingValida' + 'tion.UI_MyTasks_OE_ViewOwnersElection(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Owner Election\\Paging\\PagingValidation.cs:line 40' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': + 'nunit3/jenkins/NUnit-issue44527.xml\n' + 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'All 2 runs failed: ' + 'UI_MyTask_MR_Progress_Approve(True,"chrome","/#/tasks/access-certif' + 'ication/overview")', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks._Owner_Election.Progress.ProgressVa' + 'lidation.UI_MyTask_MR_Progress_Approve(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Owner Election\\Progress\\ProgressValidation.cs:line 26\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': + 'nunit3/jenkins/NUnit-issue44527.xml\n' + 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'All 2 runs failed: ' + 'UI_MyTask_MR_Progress_Reject(True,"chrome","/#/tasks/access-certifi' + 'cation/overview")', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks._Owner_Election.Progress.ProgressVa' + 'lidation.UI_MyTask_MR_Progress_Reject(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Owner Election\\Progress\\ProgressValidation.cs:line 74' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ApproveAll_AddCommentYes_TC2689("/#/t' + 'asks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Approve_All.ApproveAll.UI_MyTask_AC' + '_ACIS_BulkActions_ApproveAll_AddCommentYes_TC2689(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Approve All\\ApproveAll.cs:line 29' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ApproveAll_CommittedRecoredNotAffecte' + 'd_TC2691("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Approve_All.ApproveAll.UI_MyTask_AC' + '_ACIS_BulkActions_ApproveAll_CommittedRecoredNotAffected_TC2691(Str' + 'ing url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Approve All\\ApproveAll.cs:line 75' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ApproveAll_WithExistingSaved_TC2690("' + '/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Approve_All.ApproveAll.UI_MyTask_AC' + '_ACIS_BulkActions_ApproveAll_WithExistingSaved_TC2690(String url) ' + 'in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Approve All\\ApproveAll.cs:line 47' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_Browsers_Chrome_TC2692("/#/tasks/acce' + 'ss-certification/overview") failed', + 'raw_details': + 'at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Browsers.Browsers.UI_MyTask_AC_ACIS' + '_BulkActions_Browsers_Chrome_TC2692(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Browsers\\Browsers.cs:line 41\n' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ClearAll_ApproveAllNo_TC2707("/#/task' + 's/access-certification/overview") failed', + 'raw_details': + ' at MyCompanyUiSettings.Bl.Base.Click(String xpath) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 330\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Clear_All.ClearAll.UI_MyTask_AC_ACI' + 'S_BulkActions_ClearAll_ApproveAllNo_TC2707(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Clear All\\ClearAll.cs:line 90' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ClearAll_CommittedRecoredNotAffected_' + 'TC2708("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Clear_All.ClearAll.UI_MyTask_AC_ACI' + 'S_BulkActions_ClearAll_CommittedRecoredNotAffected_TC2708(String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Clear All\\ClearAll.cs:line 102' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentNo_TC2705("/#/tas' + 'ks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Clear_All.ClearAll.UI_MyTask_AC_ACI' + 'S_BulkActions_RejectAll_AddCommentNo_TC2705(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Clear All\\ClearAll.cs:line 13' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentYes_TC2706("/#/ta' + 'sks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Clear_All.ClearAll.UI_MyTask_AC_ACI' + 'S_BulkActions_RejectAll_AddCommentYes_TC2706(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Clear All\\ClearAll.cs:line 32' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_ClearAllSelectio' + 'n_TC2712("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Examine_Text_and_Layout.ExaminTextA' + 'ndLayout.UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_ClearAl' + 'lSelection_TC2712(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Examine Text and ' + 'Layout\\ExaminTextAndLayout.cs:line 67' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_MainMenu_TC2709(' + '"/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Examine_Text_and_Layout.ExaminTextA' + 'ndLayout.UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_MainMen' + 'u_TC2709(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Examine Text and ' + 'Layout\\ExaminTextAndLayout.cs:line 15' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_RejectAllSelecti' + 'on_TC2711("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Examine_Text_and_Layout.ExaminTextA' + 'ndLayout.UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_RejectA' + 'llSelection_TC2711(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Examine Text and ' + 'Layout\\ExaminTextAndLayout.cs:line 50' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_MainMenu_TC2713(' + '"/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) ' + 'in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 253\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Load.Load.UI_MyTask_AC_ACIS_BulkAct' + 'ions_ExamineTextAndLayout_MainMenu_TC2713(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Load\\Load.cs:line 15' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_MainMenu_TC2714(' + '"/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Load.Load.UI_MyTask_AC_ACIS_BulkAct' + 'ions_ExamineTextAndLayout_MainMenu_TC2714(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Load\\Load.cs:line 34' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentNo_TC2715("/#/tas' + 'ks/access-certification/overview") failed', + 'raw_details': + ' at MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) ' + 'in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 253\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Reject_All.ApproveAll.UI_MyTask_AC_' + 'ACIS_BulkActions_RejectAll_AddCommentNo_TC2715(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Reject All\\RejectAll.cs:line 14' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentYes_TC2716("/#/ta' + 'sks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Reject_All.ApproveAll.UI_MyTask_AC_' + 'ACIS_BulkActions_RejectAll_AddCommentYes_TC2716(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Reject All\\RejectAll.cs:line 29' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_CommittedRecoredNotAffected' + '_TC2718("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Reject_All.ApproveAll.UI_MyTask_AC_' + 'ACIS_BulkActions_RejectAll_CommittedRecoredNotAffected_TC2718(Strin' + 'g url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Reject All\\RejectAll.cs:line 75' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_WithExistingSaved_TC2717("/' + '#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Reject_All.ApproveAll.UI_MyTask_AC_' + 'ACIS_BulkActions_RejectAll_WithExistingSaved_TC2717(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Reject All\\RejectAll.cs:line 47' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_BulkActions_Saving_Saving_IsSynchronous_NoOtherAc' + 'tionCanBeTaken_2722("/#/tasks/access-certification/overview") ' + 'failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Bulk_Acions.Saving.Saving.UI_MyTask_AC_ACIS_Bul' + 'kActions_Saving_Saving_IsSynchronous_NoOtherActionCanBeTaken_2722(S' + 'tring url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Bulk Acions\\Saving\\Saving.cs:line 27' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumApproveAll_T' + 'C2741("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Approve_All.Graph.Approve' + 'AllGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumApp' + 'roveAll_TC2741(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Approve ' + 'All\\Graph\\ApproveAllGraph.cs:line 15' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedApproveA' + 'll_TC11159("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Approve_All.Graph.Approve' + 'AllGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprove' + 'dApproveAll_TC11159(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Approve ' + 'All\\Graph\\ApproveAllGraph.cs:line 65' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActionApprove' + 'All_TC2744("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Approve_All.Graph.Approve' + 'AllGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActi' + 'onApproveAll_TC2744(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Approve ' + 'All\\Graph\\ApproveAllGraph.cs:line 39' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectApproveAll' + '_TC11160("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Approve_All.Graph.Approve' + 'AllGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectA' + 'pproveAll_TC11160(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Approve ' + 'All\\Graph\\ApproveAllGraph.cs:line 93' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumClearAll_TC2' + '749("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Clear_All.Graph.ClearAllG' + 'raph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumClearAl' + 'l_TC2749(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Clear ' + 'All\\Graph\\ClearAllGraph.cs:line 15' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedClearAll' + '_TC2750("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Clear_All.Graph.ClearAllG' + 'raph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedCle' + 'arAll_TC2750(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Clear ' + 'All\\Graph\\ClearAllGraph.cs:line 46' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActionClearAl' + 'l_TC2752("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Clear_All.Graph.ClearAllG' + 'raph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActionCl' + 'earAll_TC2752(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Clear ' + 'All\\Graph\\ClearAllGraph.cs:line 112' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectedClearAll' + '_TC2751("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Clear_All.Graph.ClearAllG' + 'raph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectedCle' + 'arAll_TC2751(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Clear ' + 'All\\Graph\\ClearAllGraph.cs:line 79' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_ColumnFiltering_FilterFurther' + 'By_FilterBy_AllPossibleFields_TC2771("/#/tasks/access-certification' + '/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Column_Filtering.Filter_f' + 'urther_by.Filter_By.FilterBy.UI_MyTask_AC_ACIS_ChartView_ChartMenu_' + 'ColumnFiltering_FilterFurtherBy_FilterBy_AllPossibleFields_TC2771(S' + 'tring url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Column Filtering\\Filter further ' + 'by\\Filter By\\FilterBy.cs:line 106' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_ColumnFiltering_FilterFurther' + 'By_FilterBy_OneColumnOutOfManyWithAlreadyExistingFilters_TC2768("/#' + '/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Column_Filtering.Filter_f' + 'urther_by.Filter_By.FilterBy.UI_MyTask_AC_ACIS_ChartView_ChartMenu_' + 'ColumnFiltering_FilterFurtherBy_FilterBy_OneColumnOutOfManyWithAlre' + 'adyExistingFilters_TC2768(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Column Filtering\\Filter further ' + 'by\\Filter By\\FilterBy.cs:line 54' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_ColumnFiltering_FilterFurther' + 'By_FilterBy_OneColumnOutOfManyWithNoExistingFilters_TC2767("/#/task' + 's/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Column_Filtering.Filter_f' + 'urther_by.Filter_By.FilterBy.UI_MyTask_AC_ACIS_ChartView_ChartMenu_' + 'ColumnFiltering_FilterFurtherBy_FilterBy_OneColumnOutOfManyWithNoEx' + 'istingFilters_TC2767(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Column Filtering\\Filter further ' + 'by\\Filter By\\FilterBy.cs:line 13' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithOnlyPen' + 'dingForAction_TC2753("/#/tasks/access-certification/overview") ' + 'failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Entire_Column.EntireColum' + 'n.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithOnlyP' + 'endingForAction_TC2753(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Entire ' + 'Column\\EntireColumn.cs:line 16' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithPending' + 'ForActionAndUncommittedApproved_TC2754("/#/tasks/access-certificati' + 'on/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Entire_Column.EntireColum' + 'n.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithPendi' + 'ngForActionAndUncommittedApproved_TC2754(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Entire ' + 'Column\\EntireColumn.cs:line 57' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithPending' + 'ForActionAndUncommittedReject_TC2755("/#/tasks/access-certification' + '/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Entire_Column.EntireColum' + 'n.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithPendi' + 'ngForActionAndUncommittedReject_TC2755(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Entire ' + 'Column\\EntireColumn.cs:line 83' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_WithPendingForActionApp' + 'rovedCommittedAndRejectedCommitted_TC2758("/#/tasks/access-certific' + 'ation/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Entire_Column.EntireColum' + 'n.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_WithPendingForActionA' + 'pprovedCommittedAndRejectedCommitted_TC2758(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Entire ' + 'Column\\EntireColumn.cs:line 148' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_WithUncommittedApproved' + 'AndUncommittedReject_TC2756("/#/tasks/access-certification/overview' + '") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Entire_Column.EntireColum' + 'n.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_WithUncommittedApprov' + 'edAndUncommittedReject_TC2756(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Entire ' + 'Column\\EntireColumn.cs:line 111' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_ColumnEntireColumn_TC79' + '37_TC7927("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Menus.Menus.UI_MyTask_AC_' + 'ACIS_ChartView_ChartMenu_Menus_ColumnEntireColumn_TC7937_TC7927(Str' + 'ing url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Menus\\Menus.cs:line 58' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_ColumnPendingAcions_TC7' + '938("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Menus.Menus.UI_MyTask_AC_' + 'ACIS_ChartView_ChartMenu_Menus_ColumnPendingAcions_TC7938(String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Menus\\Menus.cs:line 100' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_FilterFurtherBy_TC7939(' + '"/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Menus.Menus.UI_MyTask_AC_' + 'ACIS_ChartView_ChartMenu_Menus_FilterFurtherBy_TC7939(String url) ' + 'in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Menus\\Menus.cs:line 140' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_TakeActionOn_TC7936("/#' + '/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Menus.Menus.UI_MyTask_AC_' + 'ACIS_ChartView_ChartMenu_Menus_TakeActionOn_TC7936(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Menus\\Menus.cs:line 13' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumRejectAll_TC' + '2763("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Reject_All.Graph.RejectAl' + 'lGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumRejec' + 'tAll_TC2763(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Reject ' + 'All\\Graph\\RejectAllGraph.cs:line 15' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedRejectAl' + 'l_TC2765("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Reject_All.Graph.RejectAl' + 'lGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedR' + 'ejectAll_TC2765(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Reject ' + 'All\\Graph\\RejectAllGraph.cs:line 65' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActionRejectA' + 'll_TC2764("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Reject_All.Graph.RejectAl' + 'lGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForAction' + 'RejectAll_TC2764(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Reject ' + 'All\\Graph\\RejectAllGraph.cs:line 39' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectRejectAll_' + 'TC2766("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Chart_Menu.Reject_All.Graph.RejectAl' + 'lGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectRej' + 'ectAll_TC2766(String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Chart Menu\\Reject ' + 'All\\Graph\\RejectAllGraph.cs:line 93' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_AllColumnsAvailab' + 'le_TC2793("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_' + 'AC_ACIS_ChartView_ChartMenu_LookAndFeel_AllColumnsAvailable_TC2793(' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 16' + } + ] + } + }, + { + 'output': { + 'title': '140 fail, 6 pass in 14m 11s', + 'summary': + '\u205f\u2004\u205f\u20041 files\u2004\u2003155 suites\u2004\u2003\u2002' + '14m 11s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n146 ' + 'tests\u2003\u205f\u2004\u205f\u20046 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u2003140 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n150 runs\u2006\u2003\u205f\u2004\u205f\u2004' + '6 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u2003144 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02NSw6AIAwFr' + '0JYu9BEjPEyhqDExg+mwMp4dysfZdeZ175eXMM2Wz6wpmLcenARhCCcPEoH5iDRizen0I' + 'W47TKN1itFqhArnCTqT2gJWzj61YxoMC2hP+LLDGVl5L8x8FfYZlP2KbPv4AjSxOwi+f0' + 'AEAq2iOkAAAA=\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_LongNameGetsTC279' + '5("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_' + 'AC_ACIS_ChartView_ChartMenu_LookAndFeel_LongNameGetsTC2795(String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 55' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_TableViewTC2799("' + '/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_' + 'AC_ACIS_ChartView_ChartMenu_LookAndFeel_TableViewTC2799(String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 99' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_TextAndColorsTC27' + '94("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_' + 'AC_ACIS_ChartView_ChartMenu_LookAndFeel_TextAndColorsTC2794(String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 34' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_ToolTipTC2796_TC2' + '772("/#/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_' + 'AC_ACIS_ChartView_ChartMenu_LookAndFeel_ToolTipTC2796_TC2772(String' + ' url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 75' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_ToolTipTC7926("/#' + '/tasks/access-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' + 'cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_' + 'AC_ACIS_ChartView_ChartMenu_LookAndFeel_ToolTipTC7926(String url) ' + 'in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Certification\\Access Certification Inner ' + 'Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 121' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_FiltersValidation(True,"chrome","/#/tasks/access-certi' + 'fication/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_DataGrid_DataDisplay_TC2101(True,"chrome","/#/tasks/ac' + 'cess-certification/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_DataGrid_Header_TC2100(True,"chrome","/#/tasks/access-' + 'certification/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_DataGrid_Navigation_TC2099(True,"chrome","/#/tasks/acc' + 'ess-certification/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_DataGrid_Paging_TC2102(True,"chrome","/#/tasks/access-' + 'certification/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_Grid_Grid_Validation(True,"chrome","#/tasks/access-cer' + 'tification/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_TwoUsersTwoApplicationsValidation(True,"chrome","/#/ta' + 'sks/access-certification/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': + 'nunit3/jenkins/NUnit-issue44527.xml\n' + 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'All 2 runs failed: ' + 'UI_MyTasks_AR_Paging_ShowPerPage(True,"chrome","/#/tasks/access-req' + 'uest/overview")' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_Progress_Approve(True,"chrome","/#/tasks/access-certif' + 'ication/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AC_Progress_Reject(True,"chrome","/#/tasks/access-certifi' + 'cation/overview") failed' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AR_Filters_FilterLayout(True,"chrome","/#/tasks/access-ce' + 'rtification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Filters.FiltersValid' + 'ation.UI_MyTask_AR_Filters_FilterLayout(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Request\\Filters\\FiltersValidation.cs:line 29\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AR_Filters_FiltersFunctionality(True,"chrome","/#/tasks/a' + 'ccess-request/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Filters.FiltersValid' + 'ation.UI_MyTask_AR_Filters_FiltersFunctionality(Boolean excute, ' + 'String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Request\\Filters\\FiltersValidation.cs:line 83' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AR_Grid_FilterVAlidates(True,"chrome","/#/tasks/access-ce' + 'rtification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Grid.GridValidation.' + 'UI_MyTask_AR_Grid_FilterVAlidates(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Request\\Grid\\GridValidation.cs:line 29\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AR_Grid_Paging(True,"chrome","/#/tasks/access-certificati' + 'on/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Grid.GridValidation.' + 'UI_MyTask_AR_Grid_Paging(Boolean excute, String browserName, ' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Request\\Grid\\GridValidation.cs:line 65' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AR_Progress_Approve(True,"chrome","/#/tasks/access-certif' + 'ication/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Progress.ProgressVal' + 'idation.UI_MyTask_AR_Progress_Approve(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Request\\Progress\\ProgressValidation.cs:line 32\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_AR_Progress_Reject(True,"chrome","/#/tasks/access-certifi' + 'cation/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Progress.ProgressVal' + 'idation.UI_MyTask_AR_Progress_Reject(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Access Request\\Progress\\ProgressValidation.cs:line 80' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_CC_Filters_FilterVAlidates(True,"chrome","/#/tasks/access' + '-certification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Grid.GridValidat' + 'ion.UI_MyTask_CC_Filters_FilterVAlidates(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Compliance Control\\Grid\\GridValidation.cs:line 30\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_CC_Grid_Paging(True,"chrome","/#/tasks/access-certificati' + 'on/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Grid.GridValidat' + 'ion.UI_MyTask_CC_Grid_Paging(Boolean excute, String browserName, ' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Compliance Control\\Grid\\GridValidation.cs:line 66' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTasks_CC_Paging_ShowPerPage(True,"chrome","/#/tasks/access-req' + 'uest/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Paging.PagingVal' + 'idation.UI_MyTasks_CC_Paging_ShowPerPage(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Compliance Control\\Paging\\PagingValidation.cs:line 24\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_CC_Progress_Approve(True,"chrome","/#/tasks/access-certif' + 'ication/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Progress.Progres' + 'sValidation.UI_MyTask_CC_Progress_Approve(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Compliance Control\\Progress\\ProgressValidation.cs:line ' + '27\n--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_CC_Progress_Reject(True,"chrome","/#/tasks/access-certifi' + 'cation/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Progress.Progres' + 'sValidation.UI_MyTask_CC_Progress_Reject(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Compliance Control\\Progress\\ProgressValidation.cs:line ' + '76' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_CC_Filters_FilterLayout(True,"chrome","/#/tasks/access-ce' + 'rtification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks_Compliance_Control.Filters.FiltersV' + 'alidation.UI_MyTask_CC_Filters_FilterLayout(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Compliance Control\\Filters\\FiltersValidation.cs:line 30\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_CC_Filters_FiltersFunctionality(True,"chrome","/#/tasks/a' + 'ccess-request/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks_Compliance_Control.Filters.FiltersV' + 'alidation.UI_MyTask_CC_Filters_FiltersFunctionality(Boolean ' + 'excute, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\Compliance Control\\Filters\\FiltersValidation.cs:line 69' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_MR_Filters_FilterLayout(True,"chrome","/#/tasks/access-ce' + 'rtification/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks_My_Requests.Filters.FiltersValidati' + 'on.UI_MyTask_MR_Filters_FilterLayout(Boolean excute, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\My Requests\\Filters\\FiltersValidation.cs:line 22\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UI_MyTask_MR_Filters_FiltersFunctionality(True,"chrome","/#/tasks/a' + 'ccess-request/overview") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.My_Tasks_My_Requests.Filters.FiltersValidati' + 'on.UI_MyTask_MR_Filters_FiltersFunctionality(Boolean excute, ' + 'String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' + ' Tasks\\My Requests\\Filters\\FiltersValidation.cs:line 78' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionAddAccountsFromSearch_TC7466(True,"en","1","chrome"' + ',"/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionAddAccountsFromSearch_TC7466(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 76\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionBulkActionsCoverage_TC7465(True,"en","1","chrome","' + '/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionBulkActionsCoverage_TC7465(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 111' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionBulkUploadCoverage_TC7467_TC7468(True,"en","1","chr' + 'ome","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionBulkUploadCoverage_TC7467_TC7468(Boolean excute, ' + 'String language, String itteration, String browserName, String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 575' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionBulkUploadDownloadSampleFile_TC7464(True,"en","1","' + 'chrome","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionBulkUploadDownloadSampleFile_TC7464(Boolean excute, ' + 'String language, String itteration, String browserName, String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 155' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionColumns_TC7474(True,"en","1","chrome","/#/settings/' + 'general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionColumns_TC7474(Boolean excute, String language, ' + 'String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 204' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionGridCoverage_TC7465(True,"en","1","chrome","/#/sett' + 'ings/general-settings","u0g793,u1g1,u1g792,u1g802,u2g399,u2g8...") ' + 'failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionGridCoverage_TC7465(Boolean excute, String language, ' + 'String itteration, String browserName, String url, String names) ' + 'in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 532' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionLoadSameAccountTwice_TC7473(True,"en","1","chrome",' + '"/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionLoadSameAccountTwice_TC7473(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 301' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionNonCsvFormat_TC7472(True,"en","1","chrome","/#/sett' + 'ings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionNonCsvFormat_TC7472(Boolean excute, String language, ' + 'String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 349' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionPaginationCoverage_TC7471(True,"en","1","chrome","/' + '#/settings/general-settings","u0g791,u0g801,u1g791,u1g801,u2g791,u2' + '...") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionPaginationCoverage_TC7471(Boolean excute, String ' + 'language, String itteration, String browserName, String url, ' + 'String names) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 32' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionRemoveAccounts_TC7470(True,"en","1","chrome","/#/se' + 'ttings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionRemoveAccounts_TC7470(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 397' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionScreenOverviewLook_TC7465(True,"en","1","chrome","/' + '#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionScreenOverviewLook_TC7465(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 248' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionSearchCurrentExcludedAccounts_TC7475(True,"en","1",' + '"chrome","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionSearchCurrentExcludedAccounts_TC7475(Boolean excute, ' + 'String language, String itteration, String browserName, String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 488' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIAlertExclusionShowPerPageCoverage_TC7465(True,"en","1","chrome","' + '/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' + 'AlertExclusionShowPerPageCoverage_TC7465(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Alert Exclusions\\AlertExclusions.cs:line 447' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionAddAccountsFromSearch_TC3411(True,"en","1","chr' + 'ome","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionAddAccountsFromSearch_TC3411(Boolean ' + 'excute, String language, String itteration, String browserName, ' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 142\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionBulkActionsCoverage_TC7554_TC3415(True,"en","1"' + ',"chrome","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionBulkActionsCoverage_TC7554_TC3415(Boolea' + 'n excute, String language, String itteration, String browserName, ' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 180' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionBulkUploadCoverage_TC3412_TC3413(True,"en","1",' + '"chrome","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionBulkUploadCoverage_TC3412_TC3413(Boolean' + ' excute, String language, String itteration, String browserName, ' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 78' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionColumns_TC3419(True,"en","1","chrome","/#/setti' + 'ngs/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionColumns_TC3419(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 223' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionGridCoverage_TC7554(True,"en","1","chrome","/#/' + 'settings/general-settings","u0g793,u1g1,u1g792,u1g802,u2g399,u2g8..' + '.") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionGridCoverage_TC7554(Boolean excute, ' + 'String language, String itteration, String browserName, String ' + 'url, String names) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 267' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionLoadSameAccountTwice_TC3418(True,"en","1","chro' + 'me","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionLoadSameAccountTwice_TC3418(Boolean ' + 'excute, String language, String itteration, String browserName, ' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 309' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionNonCsvFormat_TC3417(True,"en","1","chrome","/#/' + 'settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionNonCsvFormat_TC3417(Boolean excute, ' + 'String language, String itteration, String browserName, String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 31' + } + ] + } + }, + { + 'output': { + 'title': '140 fail, 6 pass in 14m 11s', + 'summary': + '\u205f\u2004\u205f\u20041 files\u2004\u2003155 suites\u2004\u2003\u2002' + '14m 11s ' + '[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac' + 'tion/blob/v1.20/README.md#the-symbols "duration of all tests")\n146 ' + 'tests\u2003\u205f\u2004\u205f\u20046 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u2003140 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n150 runs\u2006\u2003\u205f\u2004\u205f\u2004' + '6 ' + '[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re' + 'sult-action/blob/v1.20/README.md#the-symbols "passed tests")\u20030 ' + '[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b' + 'lob/v1.20/README.md#the-symbols "skipped / disabled tests")\u2003144 ' + '[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo' + 'b/v1.20/README.md#the-symbols "failed tests")\n\nResults for commit ' + 'commit s.\n\n' + '[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02NSw6AIAwFr' + '0JYu9BEjPEyhqDExg+mwMp4dysfZdeZ175eXMM2Wz6wpmLcenARhCCcPEoH5iDRizen0I' + 'W47TKN1itFqhArnCTqT2gJWzj61YxoMC2hP+LLDGVl5L8x8FfYZlP2KbPv4AjSxOwi+f0' + 'AEAq2iOkAAAA=\n', + 'annotations': [ + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionPaginationCoverage_TC7554_TC3415(True,"en","1",' + '"chrome","/#/settings/general-settings","u0g106,u0g115,u0g124,u0g13' + '3,u0g142,u0...") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionPaginationCoverage_TC7554_TC3415(Boolean' + ' excute, String language, String itteration, String browserName, ' + 'String url, String names) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 355' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionSearchCurrentExcludedAccounts_TC3420(True,"en",' + '"1","chrome","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionSearchCurrentExcludedAccounts_TC3420(Boo' + 'lean excute, String language, String itteration, String ' + 'browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 398' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIDataOwnerExclusionShowPerPageCoverage_TC7554(True,"en","1","chrom' + 'e","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' + 'usions.UIDataOwnerExclusionShowPerPageCoverage_TC7554(Boolean ' + 'excute, String language, String itteration, String browserName, ' + 'String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 438' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIGeneralSettingsAllowPhysicalPath_TC10766(True,"1","abcd","chrome"' + ',"en","user,ra_user","crowdSource,whiteops","user","is_administrato' + 'r","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Logical_Mapped_Path.Settings.Settin' + 'gs.UIGeneralSettingsAllowPhysicalPath_TC10766(Boolean excute, ' + 'String itteration, String account, String browserName, String ' + 'language, String dbTables, String dbSchema, String tableName, ' + 'String columnName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Logical Mapped Path\\Settings\\Settings.cs:line 266\n' + '--NoSuchElementException\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIGeneralSettingsDataDisplay_TC10898(True,"1","abcd","chrome","en",' + '"user,ra_user","crowdSource,whiteops","user","is_administrator","/#' + '/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Logical_Mapped_Path.Settings.Settin' + 'gs.UIGeneralSettingsDataDisplay_TC10898(Boolean excute, String ' + 'itteration, String account, String browserName, String language, ' + 'String dbTables, String dbSchema, String tableName, String ' + 'columnName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Logical Mapped Path\\Settings\\Settings.cs:line 75' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIGeneralSettingsExcludeAdministrator_TC10765(True,"1","abcd","chro' + 'me","en","user,ra_user","crowdSource,whiteops","user","is_administr' + 'ator","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Logical_Mapped_Path.Settings.Settin' + 'gs.UIGeneralSettingsExcludeAdministrator_TC10765(Boolean excute, ' + 'String itteration, String account, String browserName, String ' + 'language, String dbTables, String dbSchema, String tableName, ' + 'String columnName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Logical Mapped Path\\Settings\\Settings.cs:line 192' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIGeneralSettingsNavigation_TC10897(True,"1","abcd","chrome","en","' + 'user,ra_user","crowdSource,whiteops","user","is_administrator","/#/' + 'settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Logical_Mapped_Path.Settings.Settin' + 'gs.UIGeneralSettingsNavigation_TC10897(Boolean excute, String ' + 'itteration, String account, String browserName, String language, ' + 'String dbTables, String dbSchema, String tableName, String ' + 'columnName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Logical Mapped Path\\Settings\\Settings.cs:line 36' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIGeneralSettingsTranslatePhysicalPath_TC10764(True,"1","abcd","chr' + 'ome","en","user,ra_user","crowdSource,whiteops","user","is_administ' + 'rator","/#/settings/general-settings") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Logical_Mapped_Path.Settings.Settin' + 'gs.UIGeneralSettingsTranslatePhysicalPath_TC10764(Boolean excute, ' + 'String itteration, String account, String browserName, String ' + 'language, String dbTables, String dbSchema, String tableName, ' + 'String columnName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Logical Mapped Path\\Settings\\Settings.cs:line 119' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIMessageTemplatesCompanyInformationCoverage_TC3422_TC7534(True,"en' + '","1","chrome","/#/settings/crowd-messages/welcome-me...") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Messages.MessagesTests.UIMessageTem' + 'platesCompanyInformationCoverage_TC3422_TC7534(Boolean excute, ' + 'String language, String itteration, String browserName, String ' + 'url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Messages\\MessagesTests.cs:line 33\n--NoSuchElementException\n' + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIMessageTemplatesCompanyInformationFunctionality_TC3422_TC7534(Tru' + 'e,"en","1","chrome","/#/settings/crowd-messages/welcome-me...","goo' + 'gle") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Messages.MessagesTests.UIMessageTem' + 'platesCompanyInformationFunctionality_TC3422_TC7534(Boolean ' + 'excute, String language, String itteration, String browserName, ' + 'String url, String companyName) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Messages\\MessagesTests.cs:line 79' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIMessageTemplatesCumulativeReminderScheduling_TC3426(True,"en","1"' + ',"chrome","/#/settings/crowd-messages/welcome-me...") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Messages.MessagesTests.UIMessageTem' + 'platesCumulativeReminderScheduling_TC3426(Boolean excute, String ' + 'language, String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Messages\\MessagesTests.cs:line 116' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIMessageTemplatesDiscardChanges_TC3425(True,"en","1","chrome","/#/' + 'settings/crowd-messages/welcome-me...") failed', + 'raw_details': + ' at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' + 'mechanism, String value)\n at ' + 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' + 'ElementIsVisible>b__12(IWebDriver driver)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 537\n at ' + 'MyCompanyUiSettings.Tl.Settings.Messages.MessagesTests.UIMessageTem' + 'platesDiscardChanges_TC3425(Boolean excute, String language, ' + 'String itteration, String browserName, String url) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' + 'ings\\Messages\\MessagesTests.cs:line 172' + }, + { + 'path': '/', + 'start_line': 0, + 'end_line': 0, + 'annotation_level': 'warning', + 'message': 'nunit3/jenkins/NUnit-issue44527.xml', + 'title': + 'UIMessageTemplatesHtmlEditor_TC3424(True,"en","1","chrome","/#/sett' + 'ings/crowd-messages/welcome-me..."," is not ' + 'clickable at point (80, 241). Other element would receive the ' + 'click: \n (Session info: chrome=58.0.3029.110)\n ' + '(Driver info: chromedriver=2.29.461591 ' + '(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT ' + '6.3.9600 x86_64) (WARNING: The server did not provide any ' + 'stacktrace information)\nCommand duration or timeout: 50 ' + 'milliseconds\nBuild info: version: \'3.1.0\', revision: ' + '\'86a5d70\', time: \'2017-02-16 07:57:44 -0800\'\nSystem info: ' + 'host: \'BRC-JENKINS2-AU\', ip: \'172.16.61.17\', os.name: ' + '\'Windows Server 2012 R2\', os.arch: \'x86\', os.version: \'6.3\', ' + 'java.version: \'1.8.0_66\'\nDriver info: ' + 'org.openqa.selenium.chrome.ChromeDriver\nCapabilities ' + '[{applicationCacheEnabled=false, rotatable=false, ' + 'mobileEmulationEnabled=false, networkConnectionEnabled=false, ' + 'chrome={chromedriverVersion=2.29.461591 ' + '(62ebf098771772160f391d75e589dc567915b233), ' + 'userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir2476_115' + '8}, takesHeapSnapshot=true, pageLoadStrategy=normal, ' + 'databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, ' + 'version=58.0.3029.110, platform=WIN8_1, ' + 'browserConnectionEnabled=false, nativeEvents=true, ' + 'acceptSslCerts=true, locationContextEnabled=true, ' + 'webStorageEnabled=true, browserName=chrome, takesScreenshot=true, ' + 'javascriptEnabled=true, cssSelectorsEnabled=true, ' + 'unexpectedAlertBehaviour=}]\nSession ID: ' + '5cb1002259d4ed7ed523ba2e9e0cea02\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' + 'se errorResponse)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' + 'driverCommandToExecute, Dictionary`2 parameters)\n at ' + 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' + 'MyCompanyUiSettings.Bl.Base.Click(String xpath) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 323\n at MyCompanyUiSettings.Bl.Base.Click(String ' + 'xpath) in ' 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' '.cs:line 330\n at ' 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' @@ -402,7 +551,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_ClearAll_CommittedRecoredNotAffected_' 'TC2708("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -433,7 +584,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentNo_TC2705("/#/tas' 'ks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -463,7 +616,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentYes_TC2706("/#/ta' 'sks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -493,7 +648,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_ClearAllSelectio' 'n_TC2712("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -525,7 +682,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_MainMenu_TC2709(' '"/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -557,7 +716,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_RejectAllSelecti' 'on_TC2711("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -589,8 +750,20 @@ 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_MainMenu_TC2713(' '"/#/tasks/access-certification/overview") failed', 'raw_details': - ' at MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) ' - 'in ' + 'System.Exception : Base Class - FindElementsOnPage(string xpath) - ' + '1 parameter - method threw an exception : \nTimed out after 30 ' + 'seconds\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at ' + 'MyCompanyUiSettings.Bl.Base.WaitForVisibleElement(String xpath) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 297\n at ' + 'MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 247\n at ' + 'MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) in ' 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' '.cs:line 253\n at ' 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' @@ -610,7 +783,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_ExamineTextAndLayout_MainMenu_TC2714(' '"/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -640,8 +815,20 @@ 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentNo_TC2715("/#/tas' 'ks/access-certification/overview") failed', 'raw_details': - ' at MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) ' - 'in ' + 'System.Exception : Base Class - FindElementsOnPage(string xpath) - ' + '1 parameter - method threw an exception : \nTimed out after 30 ' + 'seconds\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' + 'ng exceptionMessage, Exception lastException)\n at ' + 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' + 'condition)\n at ' + 'MyCompanyUiSettings.Bl.Base.WaitForVisibleElement(String xpath) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 297\n at ' + 'MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) in ' + 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' + '.cs:line 247\n at ' + 'MyCompanyUiSettings.Bl.Base.FindElementsOnPage(String xpath) in ' 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' '.cs:line 253\n at ' 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' @@ -661,7 +848,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_AddCommentYes_TC2716("/#/ta' 'sks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -691,7 +880,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_CommittedRecoredNotAffected' '_TC2718("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -722,7 +913,9 @@ 'UI_MyTask_AC_ACIS_BulkActions_RejectAll_WithExistingSaved_TC2717("/' '#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -753,7 +946,9 @@ 'tionCanBeTaken_2722("/#/tasks/access-certification/overview") ' 'failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -784,20 +979,44 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumApproveAll_T' 'C2741("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' - 'cation_Inner_Screen.Chart_View.Chart_Menu.Approve_All.Graph.Approve' - 'AllGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumApp' - 'roveAll_TC2741(String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Certification\\Access Certification Inner ' - 'Screen\\Chart View\\Chart Menu\\Approve ' - 'All\\Graph\\ApproveAllGraph.cs:line 15' + "System.InvalidOperationException : unknown error: Element is not " + "clickable at point (932, 731)\n (Session info: " + "chrome=58.0.3029.110)\n (Driver info: chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 65 " + "milliseconds\nBuild info: version: '3.1.0', revision: '86a5d70', " + "time: '2017-02-16 07:57:44 -0800'\nSystem info: host: " + "'BRC-JENKINS2-AU', ip: '172.16.61.17', os.name: 'Windows Server " + "2012 R2', os.arch: 'x86', os.version: '6.3', java.version: " + "'1.8.0_66'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\n" + "Capabilities [{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir4700_142" + "37}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "0501eda8a3e393ab97da9ab3839ea770\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi" + "cation_Inner_Screen.Chart_View.Chart_Menu.Approve_All.Graph.Approve" + "AllGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumApp" + "roveAll_TC2741(String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Certification\\Access Certification Inner " + "Screen\\Chart View\\Chart Menu\\Approve " + "All\\Graph\\ApproveAllGraph.cs:line 15" }, { 'path': '/', @@ -809,7 +1028,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedApproveA' 'll_TC11159("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -841,7 +1062,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActionApprove' 'All_TC2744("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -873,7 +1096,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectApproveAll' '_TC11160("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -905,20 +1130,44 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumClearAll_TC2' '749("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' - 'cation_Inner_Screen.Chart_View.Chart_Menu.Clear_All.Graph.ClearAllG' - 'raph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumClearAl' - 'l_TC2749(String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Certification\\Access Certification Inner ' - 'Screen\\Chart View\\Chart Menu\\Clear ' - 'All\\Graph\\ClearAllGraph.cs:line 15' + "System.InvalidOperationException : unknown error: Element is not " + "clickable at point (932, 731)\n (Session info: " + "chrome=58.0.3029.110)\n (Driver info: chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 66 " + "milliseconds\nBuild info: version: '3.1.0', revision: '86a5d70', " + "time: '2017-02-16 07:57:44 -0800'\nSystem info: host: " + "'BRC-JENKINS2-AU', ip: '172.16.61.17', os.name: 'Windows Server " + "2012 R2', os.arch: 'x86', os.version: '6.3', java.version: " + "'1.8.0_66'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\n" + "Capabilities [{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir6552_284" + "03}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "5646c3ae0ba7663483cda0a3894fe2a9\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi" + "cation_Inner_Screen.Chart_View.Chart_Menu.Clear_All.Graph.ClearAllG" + "raph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumClearAl" + "l_TC2749(String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Certification\\Access Certification Inner " + "Screen\\Chart View\\Chart Menu\\Clear " + "All\\Graph\\ClearAllGraph.cs:line 15" }, { 'path': '/', @@ -930,7 +1179,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedClearAll' '_TC2750("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -962,7 +1213,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActionClearAl' 'l_TC2752("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -994,7 +1247,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectedClearAll' '_TC2751("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1027,21 +1282,45 @@ 'By_FilterBy_AllPossibleFields_TC2771("/#/tasks/access-certification' '/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' - 'cation_Inner_Screen.Chart_View.Chart_Menu.Column_Filtering.Filter_f' - 'urther_by.Filter_By.FilterBy.UI_MyTask_AC_ACIS_ChartView_ChartMenu_' - 'ColumnFiltering_FilterFurtherBy_FilterBy_AllPossibleFields_TC2771(S' - 'tring url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Certification\\Access Certification Inner ' - 'Screen\\Chart View\\Chart Menu\\Column Filtering\\Filter further ' - 'by\\Filter By\\FilterBy.cs:line 106' + "System.InvalidOperationException : unknown error: Element is not " + "clickable at point (932, 731)\n (Session info: " + "chrome=58.0.3029.110)\n (Driver info: chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 61 " + "milliseconds\nBuild info: version: '3.1.0', revision: '86a5d70', " + "time: '2017-02-16 07:57:44 -0800'\nSystem info: host: " + "'BRC-JENKINS2-AU', ip: '172.16.61.17', os.name: 'Windows Server " + "2012 R2', os.arch: 'x86', os.version: '6.3', java.version: " + "'1.8.0_66'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\n" + "Capabilities [{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir32_9833}" + ", takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "258bbe17298009e5e47efcf485ebccd3\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi" + "cation_Inner_Screen.Chart_View.Chart_Menu.Column_Filtering.Filter_f" + "urther_by.Filter_By.FilterBy.UI_MyTask_AC_ACIS_ChartView_ChartMenu_" + "ColumnFiltering_FilterFurtherBy_FilterBy_AllPossibleFields_TC2771(S" + "tring url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Certification\\Access Certification Inner " + "Screen\\Chart View\\Chart Menu\\Column Filtering\\Filter further " + "by\\Filter By\\FilterBy.cs:line 106" }, { 'path': '/', @@ -1054,7 +1333,9 @@ 'By_FilterBy_OneColumnOutOfManyWithAlreadyExistingFilters_TC2768("/#' '/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1088,7 +1369,9 @@ 'By_FilterBy_OneColumnOutOfManyWithNoExistingFilters_TC2767("/#/task' 's/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1122,20 +1405,44 @@ 'dingForAction_TC2753("/#/tasks/access-certification/overview") ' 'failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' - 'cation_Inner_Screen.Chart_View.Chart_Menu.Entire_Column.EntireColum' - 'n.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithOnlyP' - 'endingForAction_TC2753(String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Certification\\Access Certification Inner ' - 'Screen\\Chart View\\Chart Menu\\Entire ' - 'Column\\EntireColumn.cs:line 16' + "System.InvalidOperationException : unknown error: Element is not " + "clickable at point (932, 731)\n (Session info: " + "chrome=58.0.3029.110)\n (Driver info: chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 65 " + "milliseconds\nBuild info: version: '3.1.0', revision: '86a5d70', " + "time: '2017-02-16 07:57:44 -0800'\nSystem info: host: " + "'BRC-JENKINS2-AU', ip: '172.16.61.17', os.name: 'Windows Server " + "2012 R2', os.arch: 'x86', os.version: '6.3', java.version: " + "'1.8.0_66'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\n" + "Capabilities [{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir2992_316" + "86}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "8397ed2522698ddccb6b0aa573d920e9\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi" + "cation_Inner_Screen.Chart_View.Chart_Menu.Entire_Column.EntireColum" + "n.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColum_WithOnlyP" + "endingForAction_TC2753(String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Certification\\Access Certification Inner " + "Screen\\Chart View\\Chart Menu\\Entire " + "Column\\EntireColumn.cs:line 16" }, { 'path': '/', @@ -1148,7 +1455,9 @@ 'ForActionAndUncommittedApproved_TC2754("/#/tasks/access-certificati' 'on/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1181,7 +1490,9 @@ 'ForActionAndUncommittedReject_TC2755("/#/tasks/access-certification' '/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1214,7 +1525,9 @@ 'rovedCommittedAndRejectedCommitted_TC2758("/#/tasks/access-certific' 'ation/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1247,7 +1560,9 @@ 'AndUncommittedReject_TC2756("/#/tasks/access-certification/overview' '") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1279,19 +1594,43 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_ColumnEntireColumn_TC79' '37_TC7927("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' - 'cation_Inner_Screen.Chart_View.Chart_Menu.Menus.Menus.UI_MyTask_AC_' - 'ACIS_ChartView_ChartMenu_Menus_ColumnEntireColumn_TC7937_TC7927(Str' - 'ing url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Certification\\Access Certification Inner ' - 'Screen\\Chart View\\Chart Menu\\Menus\\Menus.cs:line 58' + "System.InvalidOperationException : unknown error: Element is not " + "clickable at point (932, 731)\n (Session info: " + "chrome=58.0.3029.110)\n (Driver info: chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 67 " + "milliseconds\nBuild info: version: '3.1.0', revision: '86a5d70', " + "time: '2017-02-16 07:57:44 -0800'\nSystem info: host: " + "'BRC-JENKINS2-AU', ip: '172.16.61.17', os.name: 'Windows Server " + "2012 R2', os.arch: 'x86', os.version: '6.3', java.version: " + "'1.8.0_66'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\n" + "Capabilities [{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir2696_148" + "36}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "6a683eff25d0c058e04394158f5d2245\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi" + "cation_Inner_Screen.Chart_View.Chart_Menu.Menus.Menus.UI_MyTask_AC_" + "ACIS_ChartView_ChartMenu_Menus_ColumnEntireColumn_TC7937_TC7927(Str" + "ing url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Certification\\Access Certification Inner " + "Screen\\Chart View\\Chart Menu\\Menus\\Menus.cs:line 58" }, { 'path': '/', @@ -1303,7 +1642,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_ColumnPendingAcions_TC7' '938("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1334,7 +1675,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_FilterFurtherBy_TC7939(' '"/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1365,7 +1708,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Menus_TakeActionOn_TC7936("/#' '/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1395,20 +1740,44 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumRejectAll_TC' '2763("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' - 'cation_Inner_Screen.Chart_View.Chart_Menu.Reject_All.Graph.RejectAl' - 'lGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumRejec' - 'tAll_TC2763(String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Certification\\Access Certification Inner ' - 'Screen\\Chart View\\Chart Menu\\Reject ' - 'All\\Graph\\RejectAllGraph.cs:line 15' + "System.InvalidOperationException : unknown error: Element is not " + "clickable at point (932, 731)\n (Session info: " + "chrome=58.0.3029.110)\n (Driver info: chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 60 " + "milliseconds\nBuild info: version: '3.1.0', revision: '86a5d70', " + "time: '2017-02-16 07:57:44 -0800'\nSystem info: host: " + "'BRC-JENKINS2-AU', ip: '172.16.61.17', os.name: 'Windows Server " + "2012 R2', os.arch: 'x86', os.version: '6.3', java.version: " + "'1.8.0_66'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\n" + "Capabilities [{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir10404_20" + "818}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "50f2dfc6d36fd64051d143d025dc8e53\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi" + "cation_Inner_Screen.Chart_View.Chart_Menu.Reject_All.Graph.RejectAl" + "lGraph.UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_EntireColumRejec" + "tAll_TC2763(String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Certification\\Access Certification Inner " + "Screen\\Chart View\\Chart Menu\\Reject " + "All\\Graph\\RejectAllGraph.cs:line 15" }, { 'path': '/', @@ -1420,7 +1789,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingApprovedRejectAl' 'l_TC2765("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1452,7 +1823,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingForActionRejectA' 'll_TC2764("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1484,7 +1857,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_Graph_PendingRejectRejectAll_' 'TC2766("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1516,19 +1891,43 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_AllColumnsAvailab' 'le_TC2793("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi' - 'cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_' - 'AC_ACIS_ChartView_ChartMenu_LookAndFeel_AllColumnsAvailable_TC2793(' - 'String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Certification\\Access Certification Inner ' - 'Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 16' + "System.InvalidOperationException : unknown error: Element is not " + "clickable at point (932, 731)\n (Session info: " + "chrome=58.0.3029.110)\n (Driver info: chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 61 " + "milliseconds\nBuild info: version: '3.1.0', revision: '86a5d70', " + "time: '2017-02-16 07:57:44 -0800'\nSystem info: host: " + "'BRC-JENKINS2-AU', ip: '172.16.61.17', os.name: 'Windows Server " + "2012 R2', os.arch: 'x86', os.version: '6.3', java.version: " + "'1.8.0_66'\nDriver info: org.openqa.selenium.chrome.ChromeDriver\n" + "Capabilities [{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir3796_318" + "36}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "840df673591317f43b8304ab9db74078\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebElement.Click()\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Certification.Access_Certifi" + "cation_Inner_Screen.Chart_View.Look_And_Feel.LookAndFeel.UI_MyTask_" + "AC_ACIS_ChartView_ChartMenu_LookAndFeel_AllColumnsAvailable_TC2793(" + "String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Certification\\Access Certification Inner " + "Screen\\Chart View\\Look And Feel\\LookAndFeel.cs:line 16" } ] } @@ -1571,7 +1970,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_LongNameGetsTC279' '5("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1602,7 +2003,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_TableViewTC2799("' '/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1633,7 +2036,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_TextAndColorsTC27' '94("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1664,7 +2069,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_ToolTipTC2796_TC2' '772("/#/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1695,7 +2102,9 @@ 'UI_MyTask_AC_ACIS_ChartView_ChartMenu_LookAndFeel_ToolTipTC7926("/#' '/tasks/access-certification/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1724,7 +2133,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_FiltersValidation(True,"chrome","/#/tasks/access-certi' - 'fication/overview") failed' + 'fication/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1734,7 +2144,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_DataGrid_DataDisplay_TC2101(True,"chrome","/#/tasks/ac' - 'cess-certification/overview") failed' + 'cess-certification/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1744,7 +2155,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_DataGrid_Header_TC2100(True,"chrome","/#/tasks/access-' - 'certification/overview") failed' + 'certification/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1754,7 +2166,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_DataGrid_Navigation_TC2099(True,"chrome","/#/tasks/acc' - 'ess-certification/overview") failed' + 'ess-certification/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1764,7 +2177,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_DataGrid_Paging_TC2102(True,"chrome","/#/tasks/access-' - 'certification/overview") failed' + 'certification/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1774,7 +2188,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_Grid_Grid_Validation(True,"chrome","#/tasks/access-cer' - 'tification/overview") failed' + 'tification/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1784,7 +2199,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_TwoUsersTwoApplicationsValidation(True,"chrome","/#/ta' - 'sks/access-certification/overview") failed' + 'sks/access-certification/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1797,7 +2213,8 @@ 'title': 'All 2 runs failed: ' 'UI_MyTasks_AR_Paging_ShowPerPage(True,"chrome","/#/tasks/access-req' - 'uest/overview")' + 'uest/overview")', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1807,7 +2224,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_Progress_Approve(True,"chrome","/#/tasks/access-certif' - 'ication/overview") failed' + 'ication/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1817,7 +2235,8 @@ 'message': 'nunit3/jenkins/NUnit-issue44527.xml', 'title': 'UI_MyTask_AC_Progress_Reject(True,"chrome","/#/tasks/access-certifi' - 'cation/overview") failed' + 'cation/overview") failed', + 'raw_details': 'OneTimeSetUp: No suitable constructor was found' }, { 'path': '/', @@ -1829,29 +2248,59 @@ 'UI_MyTask_AR_Filters_FilterLayout(True,"chrome","/#/tasks/access-ce' 'rtification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Filters.FiltersValid' - 'ation.UI_MyTask_AR_Filters_FilterLayout(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Request\\Filters\\FiltersValidation.cs:line 29\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 15 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir11804_16" + "895}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "29b4b9836d0675d3828a94e2f11cf9d7\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Filters.FiltersValid" + "ation.UI_MyTask_AR_Filters_FilterLayout(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Request\\Filters\\FiltersValidation.cs:line 29\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -1863,7 +2312,9 @@ 'UI_MyTask_AR_Filters_FiltersFunctionality(True,"chrome","/#/tasks/a' 'ccess-request/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1892,29 +2343,59 @@ 'UI_MyTask_AR_Grid_FilterVAlidates(True,"chrome","/#/tasks/access-ce' 'rtification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Grid.GridValidation.' - 'UI_MyTask_AR_Grid_FilterVAlidates(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Request\\Grid\\GridValidation.cs:line 29\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 15 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir12972_27" + "801}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "fca88dd0490c464a5ded2f16849929d8\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Grid.GridValidation." + "UI_MyTask_AR_Grid_FilterVAlidates(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Request\\Grid\\GridValidation.cs:line 29\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -1926,7 +2407,9 @@ 'UI_MyTask_AR_Grid_Paging(True,"chrome","/#/tasks/access-certificati' 'on/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -1955,29 +2438,59 @@ 'UI_MyTask_AR_Progress_Approve(True,"chrome","/#/tasks/access-certif' 'ication/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Progress.ProgressVal' - 'idation.UI_MyTask_AR_Progress_Approve(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Access Request\\Progress\\ProgressValidation.cs:line 32\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir3688_215" + "57}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "fc2e027b336637b143a0098139997621\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Access_Request.Progress.ProgressVal" + "idation.UI_MyTask_AR_Progress_Approve(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Access Request\\Progress\\ProgressValidation.cs:line 32\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -1989,7 +2502,9 @@ 'UI_MyTask_AR_Progress_Reject(True,"chrome","/#/tasks/access-certifi' 'cation/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2018,29 +2533,59 @@ 'UI_MyTask_CC_Filters_FilterVAlidates(True,"chrome","/#/tasks/access' '-certification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Grid.GridValidat' - 'ion.UI_MyTask_CC_Filters_FilterVAlidates(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Compliance Control\\Grid\\GridValidation.cs:line 30\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir13304_30" + "088}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "e6e1a454eceffe04daec2df3121843c6\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Grid.GridValidat" + "ion.UI_MyTask_CC_Filters_FilterVAlidates(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Compliance Control\\Grid\\GridValidation.cs:line 30\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -2052,7 +2597,9 @@ 'UI_MyTask_CC_Grid_Paging(True,"chrome","/#/tasks/access-certificati' 'on/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2081,29 +2628,59 @@ 'UI_MyTasks_CC_Paging_ShowPerPage(True,"chrome","/#/tasks/access-req' 'uest/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Paging.PagingVal' - 'idation.UI_MyTasks_CC_Paging_ShowPerPage(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Compliance Control\\Paging\\PagingValidation.cs:line 24\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir6532_293" + "46}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "b5311e179a7c4fac0e8285b86e566664\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Paging.PagingVal" + "idation.UI_MyTasks_CC_Paging_ShowPerPage(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Compliance Control\\Paging\\PagingValidation.cs:line 24\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -2115,29 +2692,59 @@ 'UI_MyTask_CC_Progress_Approve(True,"chrome","/#/tasks/access-certif' 'ication/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Progress.Progres' - 'sValidation.UI_MyTask_CC_Progress_Approve(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Compliance Control\\Progress\\ProgressValidation.cs:line ' - '27\n--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir12668_24" + "175}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "1a60859e82be5a9504866d8d9e6b21ba\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks.Compliance_Control.Progress.Progres" + "sValidation.UI_MyTask_CC_Progress_Approve(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Compliance Control\\Progress\\ProgressValidation.cs:line " + "27\n--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -2149,7 +2756,9 @@ 'UI_MyTask_CC_Progress_Reject(True,"chrome","/#/tasks/access-certifi' 'cation/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2179,29 +2788,59 @@ 'UI_MyTask_CC_Filters_FilterLayout(True,"chrome","/#/tasks/access-ce' 'rtification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks_Compliance_Control.Filters.FiltersV' - 'alidation.UI_MyTask_CC_Filters_FilterLayout(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\Compliance Control\\Filters\\FiltersValidation.cs:line 30\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 16 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir10360_63" + "06}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "68b0320c39a561808d45f7b1bd2ce18e\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks_Compliance_Control.Filters.FiltersV" + "alidation.UI_MyTask_CC_Filters_FilterLayout(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\Compliance Control\\Filters\\FiltersValidation.cs:line 30\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -2213,7 +2852,9 @@ 'UI_MyTask_CC_Filters_FiltersFunctionality(True,"chrome","/#/tasks/a' 'ccess-request/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2242,29 +2883,59 @@ 'UI_MyTask_MR_Filters_FilterLayout(True,"chrome","/#/tasks/access-ce' 'rtification/overview") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.My_Tasks_My_Requests.Filters.FiltersValidati' - 'on.UI_MyTask_MR_Filters_FilterLayout(Boolean excute, String ' - 'browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My' - ' Tasks\\My Requests\\Filters\\FiltersValidation.cs:line 22\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir2736_229" + "08}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "52ab857fbeb80383ec0a4311504f7b8e\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.My_Tasks_My_Requests.Filters.FiltersValidati" + "on.UI_MyTask_MR_Filters_FilterLayout(Boolean excute, String " + "browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\My" + " Tasks\\My Requests\\Filters\\FiltersValidation.cs:line 22\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -2276,7 +2947,9 @@ 'UI_MyTask_MR_Filters_FiltersFunctionality(True,"chrome","/#/tasks/a' 'ccess-request/overview") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2305,29 +2978,59 @@ 'UIAlertExclusionAddAccountsFromSearch_TC7466(True,"en","1","chrome"' ',"/#/settings/general-settings") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI' - 'AlertExclusionAddAccountsFromSearch_TC7466(Boolean excute, String ' - 'language, String itteration, String browserName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' - 'ings\\Alert Exclusions\\AlertExclusions.cs:line 76\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir3016_202" + "27}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "c9411ed622920bbdad53147bc36fd09b\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.Settings.Alert_Exclusions.AlertExclusions.UI" + "AlertExclusionAddAccountsFromSearch_TC7466(Boolean excute, String " + "language, String itteration, String browserName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett" + "ings\\Alert Exclusions\\AlertExclusions.cs:line 76\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -2339,7 +3042,9 @@ 'UIAlertExclusionBulkActionsCoverage_TC7465(True,"en","1","chrome","' '/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2368,7 +3073,9 @@ 'UIAlertExclusionBulkUploadCoverage_TC7467_TC7468(True,"en","1","chr' 'ome","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2398,7 +3105,9 @@ 'UIAlertExclusionBulkUploadDownloadSampleFile_TC7464(True,"en","1","' 'chrome","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2428,7 +3137,9 @@ 'UIAlertExclusionColumns_TC7474(True,"en","1","chrome","/#/settings/' 'general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2458,7 +3169,9 @@ 'ings/general-settings","u0g793,u1g1,u1g792,u1g802,u2g399,u2g8...") ' 'failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2488,7 +3201,9 @@ 'UIAlertExclusionLoadSameAccountTwice_TC7473(True,"en","1","chrome",' '"/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2517,7 +3232,9 @@ 'UIAlertExclusionNonCsvFormat_TC7472(True,"en","1","chrome","/#/sett' 'ings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2547,7 +3264,9 @@ '#/settings/general-settings","u0g791,u0g801,u1g791,u1g801,u2g791,u2' '...") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2577,7 +3296,9 @@ 'UIAlertExclusionRemoveAccounts_TC7470(True,"en","1","chrome","/#/se' 'ttings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2606,7 +3327,9 @@ 'UIAlertExclusionScreenOverviewLook_TC7465(True,"en","1","chrome","/' '#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2635,7 +3358,9 @@ 'UIAlertExclusionSearchCurrentExcludedAccounts_TC7475(True,"en","1",' '"chrome","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2665,7 +3390,9 @@ 'UIAlertExclusionShowPerPageCoverage_TC7465(True,"en","1","chrome","' '/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2694,30 +3421,60 @@ 'UIDataOwnerExclusionAddAccountsFromSearch_TC3411(True,"en","1","chr' 'ome","/#/settings/general-settings") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl' - 'usions.UIDataOwnerExclusionAddAccountsFromSearch_TC3411(Boolean ' - 'excute, String language, String itteration, String browserName, ' - 'String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' - 'ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 142\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir9916_128" + "85}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "d3eacb9d6fac9a67fa47aa82158da43c\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.Settings.Data_Owner_Exclusions.DataOwnerExcl" + "usions.UIDataOwnerExclusionAddAccountsFromSearch_TC3411(Boolean " + "excute, String language, String itteration, String browserName, " + "String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett" + "ings\\Data Owner Exclusions\\DataOwnerExclusions.cs:line 142\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -2729,7 +3486,9 @@ 'UIDataOwnerExclusionBulkActionsCoverage_TC7554_TC3415(True,"en","1"' ',"chrome","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2759,7 +3518,9 @@ 'UIDataOwnerExclusionBulkUploadCoverage_TC3412_TC3413(True,"en","1",' '"chrome","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2789,7 +3550,9 @@ 'UIDataOwnerExclusionColumns_TC3419(True,"en","1","chrome","/#/setti' 'ngs/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2819,7 +3582,9 @@ 'settings/general-settings","u0g793,u1g1,u1g792,u1g802,u2g399,u2g8..' '.") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2849,7 +3614,9 @@ 'UIDataOwnerExclusionLoadSameAccountTwice_TC3418(True,"en","1","chro' 'me","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2879,7 +3646,9 @@ 'UIDataOwnerExclusionNonCsvFormat_TC3417(True,"en","1","chrome","/#/' 'settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2941,7 +3710,9 @@ '"chrome","/#/settings/general-settings","u0g106,u0g115,u0g124,u0g13' '3,u0g142,u0...") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -2971,7 +3742,9 @@ 'UIDataOwnerExclusionSearchCurrentExcludedAccounts_TC3420(True,"en",' '"1","chrome","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3001,7 +3774,9 @@ 'UIDataOwnerExclusionShowPerPageCoverage_TC7554(True,"en","1","chrom' 'e","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3032,31 +3807,61 @@ ',"en","user,ra_user","crowdSource,whiteops","user","is_administrato' 'r","/#/settings/general-settings") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.Settings.Logical_Mapped_Path.Settings.Settin' - 'gs.UIGeneralSettingsAllowPhysicalPath_TC10766(Boolean excute, ' - 'String itteration, String account, String browserName, String ' - 'language, String dbTables, String dbSchema, String tableName, ' - 'String columnName, String url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' - 'ings\\Logical Mapped Path\\Settings\\Settings.cs:line 266\n' - '--NoSuchElementException\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 0 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir7348_165" + "22}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "a9460966896b2f67901d0c200c612026\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.Settings.Logical_Mapped_Path.Settings.Settin" + "gs.UIGeneralSettingsAllowPhysicalPath_TC10766(Boolean excute, " + "String itteration, String account, String browserName, String " + "language, String dbTables, String dbSchema, String tableName, " + "String columnName, String url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett" + "ings\\Logical Mapped Path\\Settings\\Settings.cs:line 266\n" + "--NoSuchElementException\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -3069,7 +3874,9 @@ '"user,ra_user","crowdSource,whiteops","user","is_administrator","/#' '/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3101,7 +3908,9 @@ 'me","en","user,ra_user","crowdSource,whiteops","user","is_administr' 'ator","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3133,7 +3942,9 @@ 'user,ra_user","crowdSource,whiteops","user","is_administrator","/#/' 'settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3165,7 +3976,9 @@ 'ome","en","user,ra_user","crowdSource,whiteops","user","is_administ' 'rator","/#/settings/general-settings") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3196,30 +4009,60 @@ 'UIMessageTemplatesCompanyInformationCoverage_TC3422_TC7534(True,"en' '","1","chrome","/#/settings/crowd-messages/welcome-me...") failed', 'raw_details': - ' at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri' - 'ng exceptionMessage, Exception lastException)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base' - '.cs:line 537\n at ' - 'MyCompanyUiSettings.Tl.Settings.Messages.MessagesTests.UIMessageTem' - 'platesCompanyInformationCoverage_TC3422_TC7534(Boolean excute, ' - 'String language, String itteration, String browserName, String ' - 'url) in ' - 'C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett' - 'ings\\Messages\\MessagesTests.cs:line 33\n--NoSuchElementException\n' - ' at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' - 'se errorResponse)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' - 'driverCommandToExecute, Dictionary`2 parameters)\n at ' - 'OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String ' - 'mechanism, String value)\n at ' - 'OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<' - 'ElementIsVisible>b__12(IWebDriver driver)\n at ' - 'OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 ' - 'condition)' + "OpenQA.Selenium.WebDriverTimeoutException : Timed out after 30 " + "seconds\n ----> OpenQA.Selenium.NoSuchElementException : no such " + "element: Unable to locate element: " + "{\"method\":\"xpath\",\"selector\":\"//span[@translate='_Loading_']\"}" + "\n (Session info: chrome=58.0.3029.110)\n (Driver info: " + "chromedriver=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233),platform=Windows NT " + "6.3.9600 x86_64) (WARNING: The server did not provide any " + "stacktrace information)\nCommand duration or timeout: 16 " + "milliseconds\nFor documentation on this error, please visit: " + "http://seleniumhq.org/exceptions/no_such_element.html\nBuild info: " + "version: '3.1.0', revision: '86a5d70', time: '2017-02-16 07:57:44 " + "-0800'\nSystem info: host: 'BRC-JENKINS2-AU', ip: '172.16.61.17', " + "os.name: 'Windows Server 2012 R2', os.arch: 'x86', os.version: " + "'6.3', java.version: '1.8.0_66'\nDriver info: " + "org.openqa.selenium.chrome.ChromeDriver\nCapabilities " + "[{applicationCacheEnabled=false, rotatable=false, " + "mobileEmulationEnabled=false, networkConnectionEnabled=false, " + "chrome={chromedriverVersion=2.29.461591 " + "(62ebf098771772160f391d75e589dc567915b233), " + "userDataDir=C:\\Users\\BUILD-~1\\AppData\\Local\\Temp\\scoped_dir2232_223" + "98}, takesHeapSnapshot=true, pageLoadStrategy=normal, " + "databaseEnabled=false, handlesAlerts=true, hasTouchScreen=false, " + "version=58.0.3029.110, platform=WIN8_1, " + "browserConnectionEnabled=false, nativeEvents=true, " + "acceptSslCerts=true, locationContextEnabled=true, " + "webStorageEnabled=true, browserName=chrome, takesScreenshot=true, " + "javascriptEnabled=true, cssSelectorsEnabled=true, " + "unexpectedAlertBehaviour=}]\nSession ID: " + "882c55bf9c675e183d7269fae3076ce9\n*** Element info: {Using=xpath, " + "value=//span[@translate='_Loading_']}\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.ThrowTimeoutException(Stri" + "ng exceptionMessage, Exception lastException)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)\n at MyCompanyUiSettings.Bl.Base.waitToLoad() in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Bl\\Base" + ".cs:line 537\n at " + "MyCompanyUiSettings.Tl.Settings.Messages.MessagesTests.UIMessageTem" + "platesCompanyInformationCoverage_TC3422_TC7534(Boolean excute, " + "String language, String itteration, String browserName, String " + "url) in " + "C:\\branches\\1\\main-branch\\Automation\\UI\\MyCompanyUiSettings\\Tl\\Sett" + "ings\\Messages\\MessagesTests.cs:line 33\n--NoSuchElementException\n" + " at " + "OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon" + "se errorResponse)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String " + "driverCommandToExecute, Dictionary`2 parameters)\n at " + "OpenQA.Selenium.Remote.RemoteWebDriver.FindElement(String " + "mechanism, String value)\n at " + "OpenQA.Selenium.Support.UI.ExpectedConditions.<>c__DisplayClass13.<" + "ElementIsVisible>b__12(IWebDriver driver)\n at " + "OpenQA.Selenium.Support.UI.DefaultWait`1.Until[TResult](Func`2 " + "condition)" }, { 'path': '/', @@ -3232,7 +4075,9 @@ 'e,"en","1","chrome","/#/settings/crowd-messages/welcome-me...","goo' 'gle") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3262,7 +4107,9 @@ 'UIMessageTemplatesCumulativeReminderScheduling_TC3426(True,"en","1"' ',"chrome","/#/settings/crowd-messages/welcome-me...") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3291,7 +4138,9 @@ 'UIMessageTemplatesDiscardChanges_TC3425(True,"en","1","chrome","/#/' 'settings/crowd-messages/welcome-me...") failed', 'raw_details': - ' at ' + 'System.InvalidOperationException : Session [(null externalkey)] ' + 'not available and is not among the last 1000 terminated sessions.\n' + 'Active sessions are[]\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Respon' 'se errorResponse)\n at ' 'OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String ' @@ -3321,7 +4170,9 @@ 'ings/crowd-messages/welcome-me...","