Skip to content
Snippets Groups Projects
Commit 466cfced authored by Tasneem Natshah's avatar Tasneem Natshah
Browse files

Issue #3309029: Change schema config names

parent e955c733
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,6 @@ html_report: true
html_report_dir: "tests/reports"
log_report_dir: "tests/logs"
editing_mode: "free_text"
http_user: ""
http_password: ""
http_auth_headless_only: true
save_user_testing_features: false
needs_browser: true
......
......@@ -26,12 +26,6 @@ cucumber_ui.settings:
editing_mode:
type: string
label: "Editing mode"
http_user:
type: string
label: "HTTP Authentication User"
http_password:
type: string
label: "HTTP Authentication Password"
http_auth_headless_only:
type: boolean
label: "HTTP authentication only"
......
......@@ -138,25 +138,6 @@ class CucumberUiSettings extends ConfigFormBase {
'#suffix' => '</div></div>',
];
$form['http_user'] = [
'#title' => $this->t('HTTP authentication user'),
'#description' => $this->t('Username for the basic authentication for the targeted site.'),
'#type' => 'textfield',
'#maxlength' => 512,
'#default_value' => $config->get('http_user'),
'#prefix' => '<div class="panel">
<h3 class="panel__title">' . $this->t('HTTP Authentication') . '</h3>
<div class="panel__content">',
];
$form['http_password'] = [
'#title' => $this->t('HTTP authentication password'),
'#description' => $this->t('Password for the basic authentication for the targeted site.'),
'#type' => 'password',
'#default_value' => $config->get('http_password'),
'#suffix' => '</div></div>',
];
$form['http_auth_headless_only'] = [
'#type' => 'checkbox',
'#title' => $this->t('Enable HTTP authentication only for headless testing.'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment