{"id":19792105,"url":"https://github.com/xray-app/tutorial-csharp-nunit-selenium","last_synced_at":"2026-06-09T04:07:52.512Z","repository":{"id":119027735,"uuid":"353652415","full_name":"Xray-App/tutorial-csharp-nunit-selenium","owner":"Xray-App","description":"Tutorial with NUnit tests using Selenium","archived":false,"fork":false,"pushed_at":"2023-03-10T09:32:21.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-02-28T15:17:08.158Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Xray-App.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-01T09:53:40.000Z","updated_at":"2023-04-13T13:11:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"3486799e-1f45-4924-afe0-bcb1ec5a8cbc","html_url":"https://github.com/Xray-App/tutorial-csharp-nunit-selenium","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Xray-App/tutorial-csharp-nunit-selenium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xray-App%2Ftutorial-csharp-nunit-selenium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xray-App%2Ftutorial-csharp-nunit-selenium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xray-App%2Ftutorial-csharp-nunit-selenium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xray-App%2Ftutorial-csharp-nunit-selenium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Xray-App","download_url":"https://codeload.github.com/Xray-App/tutorial-csharp-nunit-selenium/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xray-App%2Ftutorial-csharp-nunit-selenium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34090863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T07:05:55.709Z","updated_at":"2026-06-09T04:07:52.507Z","avatar_url":"https://github.com/Xray-App.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tutorial with NUnit tests using Selenium Webdriver\n\n[![build workflow](https://github.com/Xray-App/tutorial-csharp-nunit-selenium/actions/workflows/main.yml/badge.svg)](https://github.com/Xray-App/tutorial-csharp-nunit-selenium/actions/workflows/main.yml)\n[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FXray-App%2Ftutorial-csharp-nunit-selenium.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FXray-App%2Ftutorial-csharp-nunit-selenium?ref=badge_shield)\n[![license](https://img.shields.io/badge/License-BSD%203--Clause-green.svg)](https://opensource.org/licenses/BSD-3-Clause)\n[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/Xray-App/community)\n\n## Overview\n\nCode that supports the tutorial [Testing web applications using Nunit](https://docs.getxray.app/pages/viewpage.action?pageId=32806649) showcasing the integration between [Xray Test Management](https://www.getxray.app/) on Jira and NUnit.\n\nThe test automation code implements some basic [Selenium Webdriver tests](./WebdemoTests.cs).\nThere are also some other unrelated tests using Google as the target SUT, in case you want to explore further.\n\n## Prerequisites\n\nIn order to run this tutorial, you need to have .NET 5.\nDependencies can be installed using:\n\n```bash\ndotnet restore\n```\n\n## Running\n\nTests can be run using locally `dotnet` tool.\n\n```bash\ndotnet test -s nunit.runsettings --filter WebdemoTests\n```\n\nTests can also run inside a Docker container; local directory should be mounted so that NUnit XML results are stored locally.\n\n```bash\ndocker build . -t nunit_webdriver_tests\ndocker run --rm -v $(pwd)/TestResults:/source/bin/Debug/net5.0/TestResults -t nunit_webdriver_tests\n```\n\n\n## Submitting results to Jira\n\nResults can be submitted to Jira so that they can be shared with the team and their impacts be easily analysed.\nThis can be achieved using [Xray Test Management](https://www.getxray.app/) as shown in further detail in this [tutorial](https://docs.getxray.app/pages/viewpage.action?pageId=32806649).\n\n## Contact\n\nAny questions related with this code, please raise issues in this GitHub project. Feel free to contribute and submit PR's.\nFor Xray specific questions, please contact [Xray's support team](https://jira.getxray.app/servicedesk/customer/portal/2).\n\n## References\n\n- [NUnit](https://nunit.org)\n- [How Xray processes NUnit XML reports (from Xray Cloud documentation)](https://docs.getxray.app/display/XRAYCLOUD/Taking+advantage+of+NUnit+XML+reports)\n\n\n## LICENSE\n\n[BSD 3-Clause](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxray-app%2Ftutorial-csharp-nunit-selenium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxray-app%2Ftutorial-csharp-nunit-selenium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxray-app%2Ftutorial-csharp-nunit-selenium/lists"}