├── .editorconfig ├── .gitattributes ├── .gitignore ├── Atata.Bootstrap.slnx ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTING_COMPONENT.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE ├── README.md ├── azure-pipelines.codecoverage.runsettings ├── azure-pipelines.release.yml ├── azure-pipelines.runsettings ├── azure-pipelines.yml ├── en-US_User.dic ├── src ├── Atata.Bootstrap │ ├── Atata.Bootstrap.csproj │ ├── BSClass.cs │ ├── BSDropdownToggle`1.cs │ ├── BSDropdown`1.cs │ ├── BSListGroupItem`1.cs │ ├── BSListGroup`1.cs │ ├── BSListGroup`2.cs │ ├── BSModal`1.cs │ ├── BSNavItem`1.cs │ ├── BSNavItem`2.cs │ ├── BSNavbar`1.cs │ ├── BSPill`1.cs │ ├── BSTabPane`1.cs │ ├── BSTab`1.cs │ ├── GlobalSuppressions.cs │ ├── GlobalUsings.cs │ ├── Triggers │ │ └── ClickTabOrPillAttribute.cs │ └── icon.png ├── Directory.Build.props └── icon.png └── test ├── Atata.Bootstrap.TestApp ├── Atata.Bootstrap.TestApp.csproj ├── GlobalSuppressions.cs ├── Pages │ ├── Index.cshtml │ ├── Shared │ │ └── _ListGroup_v3.cshtml │ ├── _Layout.cshtml │ ├── _ViewImports.cshtml │ ├── _ViewStart.cshtml │ ├── v3 │ │ ├── Dropdown.cshtml │ │ ├── Index.cshtml │ │ ├── ListGroup.cshtml │ │ ├── Pills.cshtml │ │ ├── Tabs.cshtml │ │ └── _Layout.cshtml │ ├── v4 │ │ ├── Dropdown.cshtml │ │ ├── Index.cshtml │ │ ├── ListGroup.cshtml │ │ ├── Pills.cshtml │ │ ├── Tabs.cshtml │ │ └── _Layout.cshtml │ └── v5 │ │ ├── Dropdown.cshtml │ │ ├── Index.cshtml │ │ ├── ListGroup.cshtml │ │ ├── Pills.cshtml │ │ ├── Tabs.cshtml │ │ └── _Layout.cshtml ├── Program.cs └── Properties │ └── launchSettings.json └── Atata.Bootstrap.Tests ├── Atata.Bootstrap.Tests.csproj ├── BSListGroupTests.cs ├── BSNavTests.cs ├── Components ├── DropdownPage.cs ├── DropdownTogglePage.cs ├── ListGroupPage.cs ├── PillsPage.cs └── TabsPage.cs ├── DropdownTests.cs ├── DropdownToggleTests.cs ├── GlobalFixture.cs ├── GlobalUsings.cs ├── NUnitAttributes.cs └── UITestSuite.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /Atata.Bootstrap.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/Atata.Bootstrap.slnx -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING_COMPONENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/CONTRIBUTING_COMPONENT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.codecoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/azure-pipelines.codecoverage.runsettings -------------------------------------------------------------------------------- /azure-pipelines.release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/azure-pipelines.release.yml -------------------------------------------------------------------------------- /azure-pipelines.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/azure-pipelines.runsettings -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /en-US_User.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/en-US_User.dic -------------------------------------------------------------------------------- /src/Atata.Bootstrap/Atata.Bootstrap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/Atata.Bootstrap.csproj -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSClass.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSDropdownToggle`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSDropdownToggle`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSDropdown`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSDropdown`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSListGroupItem`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSListGroupItem`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSListGroup`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSListGroup`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSListGroup`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSListGroup`2.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSModal`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSModal`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSNavItem`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSNavItem`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSNavItem`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSNavItem`2.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSNavbar`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSNavbar`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSPill`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSPill`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSTabPane`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSTabPane`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/BSTab`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/BSTab`1.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using OpenQA.Selenium; 2 | -------------------------------------------------------------------------------- /src/Atata.Bootstrap/Triggers/ClickTabOrPillAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/Triggers/ClickTabOrPillAttribute.cs -------------------------------------------------------------------------------- /src/Atata.Bootstrap/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Atata.Bootstrap/icon.png -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/src/icon.png -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Atata.Bootstrap.TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Atata.Bootstrap.TestApp.csproj -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/GlobalSuppressions.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @{ 3 | ViewBag.Title = "Atata.Bootstrap.TestApp"; 4 | } 5 | -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/Shared/_ListGroup_v3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/Shared/_ListGroup_v3.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v3/Dropdown.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v3/Dropdown.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v3/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @{ 3 | ViewBag.Title = "Atata.Bootstrap.TestApp v3"; 4 | } 5 | -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v3/ListGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v3/ListGroup.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v3/Pills.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v3/Pills.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v3/Tabs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v3/Tabs.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v3/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v3/_Layout.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v4/Dropdown.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v4/Dropdown.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v4/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @{ 3 | ViewBag.Title = "Atata.Bootstrap.TestApp v4"; 4 | } 5 | -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v4/ListGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v4/ListGroup.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v4/Pills.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v4/Pills.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v4/Tabs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v4/Tabs.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v4/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v4/_Layout.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v5/Dropdown.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v5/Dropdown.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v5/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @{ 3 | ViewBag.Title = "Home"; 4 | } 5 | -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v5/ListGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v5/ListGroup.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v5/Pills.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v5/Pills.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v5/Tabs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v5/Tabs.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Pages/v5/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Pages/v5/_Layout.cshtml -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Program.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.TestApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.TestApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/Atata.Bootstrap.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/Atata.Bootstrap.Tests.csproj -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/BSListGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/BSListGroupTests.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/BSNavTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/BSNavTests.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/Components/DropdownPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/Components/DropdownPage.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/Components/DropdownTogglePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/Components/DropdownTogglePage.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/Components/ListGroupPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/Components/ListGroupPage.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/Components/PillsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/Components/PillsPage.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/Components/TabsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/Components/TabsPage.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/DropdownTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/DropdownTests.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/DropdownToggleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/DropdownToggleTests.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/GlobalFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/GlobalFixture.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/NUnitAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/NUnitAttributes.cs -------------------------------------------------------------------------------- /test/Atata.Bootstrap.Tests/UITestSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atata-framework/atata-bootstrap/HEAD/test/Atata.Bootstrap.Tests/UITestSuite.cs --------------------------------------------------------------------------------