Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testsuite: Change references to checkboxes #7359

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion testsuite/documentation/cucumber-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ The radio button can be identified by name, id or label text.
```gherkin
When I check "manageWithSSH"
When I uncheck "role_org_admin"
When I check "container_build_host" if not checked
When I check "Container Build Host" if not checked
```

The check box can be identified by name, id or label text.
Expand Down
8 changes: 4 additions & 4 deletions testsuite/features/init_clients/buildhost_bootstrap.feature
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Feature: Bootstrap a Salt build host via the GUI
When I follow the left menu "Systems > Activation Keys"
And I follow "SUSE Test Key x86_64" in the content area
And I wait until I see "Container Build Host" text
And I check "container_build_host"
And I check "osimage_build_host"
And I check "Container Build Host"
And I check "OS Image Build Host"
And I click on "Update Activation Key"

Scenario: Bootstrap a SLES build host
Expand Down Expand Up @@ -65,6 +65,6 @@ Feature: Bootstrap a Salt build host via the GUI
When I follow the left menu "Systems > Activation Keys"
And I follow "SUSE Test Key x86_64" in the content area
And I wait until I see "Container Build Host" text
And I uncheck "container_build_host"
And I uncheck "osimage_build_host"
And I uncheck "Container Build Host"
And I uncheck "OS Image Build Host"
And I click on "Update Activation Key"
Loading