https://github.com/accenture/ocaramba.templates

Ocaramba project templates for Visual Studio

https://github.com/accenture/ocaramba.templates

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.7%) to scientific vocabulary

Keywords

extensions ocaramba-templates studio visual visual-studio
Last synced: 5 months ago · JSON representation

Repository

Ocaramba project templates for Visual Studio

Basic Info
  • Host: GitHub
  • Owner: Accenture
  • License: mit
  • Language: C#
  • Default Branch: master
  • Size: 906 KB
Statistics
  • Stars: 1
  • Watchers: 10
  • Forks: 0
  • Open Issues: 0
  • Releases: 26
Topics
extensions ocaramba-templates studio visual visual-studio
Created over 6 years ago · Last pushed 6 months ago
Metadata Files
Readme License

README.md

Ocaramba.templates

The Ocaramba project extension for Visual Studio - a set of project and class templates for web automated testing using Ocaramba Framework.

Thanks to the Ocaramba.Templates you can create in the few minutes ready to use in Continuous Integration tool project test solution for web automated testing.

Ocaramba Templates

The extension contains:

  • Project templates:
    • Ocaramba.MsTest (.NET 8.0)
    • Ocaramba.NUnit (.NET 8.0)
  • Item templates:
    • Ocaramba Page Object
    • Ocaramba NUnit Test Object
    • Ocaramba MsTest Test Object

Add New Project window

Add New Item window

Project

Troubleshooting & Known Issues

In case of problems with executing tests, update at least TestAdapter and Selenium browser drivers. You can also try to uninstall and install back one of the browser drivers.

In case of build failure due to a missing package, try uninstalling and reinstalling that package again. In case of problems with unistalling package try to update to previous version and than back update to the latest version.

In case of test execution failure with following error

OneTimeSetUp: System.IO.FileNotFoundException : Could not load fle or assembly 'System.Text.Json, Version=9.0.0.0

Add to your csproj file following lines in ItemGroup section

<Reference Include="System.Text.Json, Version=9.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  <HintPath>..\packages\System.Text.Json.9.0.0\lib\netstandard2.0\System.Text.Json.dll</HintPath>
</Reference>

Update

All templates are located on Visual Studio's New Project and New Item windows inside Ocaramba category.

Find out more on Ocaramba.

Build status

Download Ocaramba Visual Studio templates Ocaramba Templates

Where to start?


Owner

  • Name: Accenture
  • Login: Accenture
  • Kind: organization

Accenture Github site

GitHub Events

Total
  • Release event: 12
  • Delete event: 12
  • Push event: 56
  • Pull request event: 10
  • Create event: 16
Last Year
  • Release event: 12
  • Delete event: 12
  • Push event: 56
  • Pull request event: 10
  • Create event: 16

Issues and Pull Requests

Last synced: 5 months ago

All Time
  • Total issues: 0
  • Total pull requests: 23
  • Average time to close issues: N/A
  • Average time to close pull requests: 5 days
  • Total issue authors: 0
  • Total pull request authors: 3
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 21
  • Bot issues: 0
  • Bot pull requests: 1
Past Year
  • Issues: 0
  • Pull requests: 10
  • Average time to close issues: N/A
  • Average time to close pull requests: 22 minutes
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 8
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
  • raczeja (21)
  • mwyrodek (1)
  • dependabot[bot] (1)
Top Labels
Issue Labels
Pull Request Labels
dependencies (1)

Dependencies

Ocaramba.ProjectExample.MsTest.NetCore/ProjectTemplate.csproj nuget
  • MSTest.TestAdapter $MSTest.TestAdapter-version$
  • MSTest.TestFramework $MSTest.TestFramework-version$
  • Microsoft.NET.Test.Sdk $Microsoft.NET.Test.Sdk-version$
  • OcarambaLite $Ocaramba-version$
  • Selenium.WebDriver.ChromeDriver $Selenium.WebDriver.ChromeDriver-version$
  • Selenium.WebDriver.GeckoDriver $Selenium.WebDriver.GeckoDriver-version$
  • Selenium.WebDriver.IEDriver $Selenium.WebDriver.IEDriver-version$
Ocaramba.ProjectExample.MsTest.NetFramework/packages.config nuget
  • MSTest.TestFramework $MSTest.TestFramework-version$
  • NLog $NLog-version$
  • OcarambaLite $Ocaramba-version$
  • Selenium.Support $Selenium.Support-version$
  • Selenium.WebDriver $Selenium.WebDriver-version$
  • Selenium.WebDriver.ChromeDriver $Selenium.WebDriver.ChromeDriver-version$
  • Selenium.WebDriver.GeckoDriver $Selenium.WebDriver.GeckoDriver-version$
  • Selenium.WebDriver.IEDriver $Selenium.WebDriver.IEDriver-version$
Ocaramba.ProjectExample.NUnit.NetCore/ProjectTemplate.csproj nuget
  • Microsoft.NET.Test.Sdk $Microsoft.NET.Test.Sdk-version$
  • NPOI $NPOI-version$
  • NUnit $NUnit-version$
  • NUnit3TestAdapter $NUnit3TestAdapter-version$
  • OcarambaLite $Ocaramba-version$
  • Selenium.WebDriver.ChromeDriver $Selenium.WebDriver.ChromeDriver-version$
  • Selenium.WebDriver.GeckoDriver $Selenium.WebDriver.GeckoDriver-version$
  • Selenium.WebDriver.IEDriver $Selenium.WebDriver.IEDriver-version$
Ocaramba.ProjectExample.NUnit.NetFramework/packages.config nuget
  • NLog $NLog-version$
  • NPOI $NPOI-version$
  • NUnit $NUnit-version$
  • NUnit3TestAdapter $NUnit3TestAdapter-version$
  • OcarambaLite $Ocaramba-version$
  • Selenium.Support $Selenium.Support-version$
  • Selenium.WebDriver $Selenium.WebDriver-version$
  • Selenium.WebDriver.ChromeDriver $Selenium.WebDriver.ChromeDriver-version$
  • Selenium.WebDriver.GeckoDriver $Selenium.WebDriver.GeckoDriver-version$
  • Selenium.WebDriver.IEDriver $Selenium.WebDriver.IEDriver-version$
Ocaramba.PageObjectClassTemplate/Ocaramba.PageObject.Class.csproj nuget
Ocaramba.ProjectExample.MsTest.NetCore/Ocaramba.MsTest.NetCore.csproj nuget
Ocaramba.ProjectExample.MsTest.NetFramework/Ocaramba.MsTest.NetFramework.csproj nuget
Ocaramba.ProjectExample.MsTest.NetFramework/ProjectTemplate.csproj nuget
Ocaramba.ProjectExample.NUnit.NetCore/Ocaramba.NUnit.NetCore.csproj nuget
Ocaramba.ProjectExample.NUnit.NetFramework/Ocaramba.NUnit.NetFramework.csproj nuget
Ocaramba.ProjectExample.NUnit.NetFramework/ProjectTemplate.csproj nuget
Ocaramba.Templates.VSIX/Ocaramba.Templates.csproj nuget
Ocaramba.TestMsTest.Class/Ocaramba.TestMsTest.Class.csproj nuget
Ocaramba.TestNunit.Class.Template/Ocaramba.TestNunit.Class.csproj nuget