diff --git a/src/script_steps/constants.rs b/src/script_steps/constants.rs index f91a69ff..b8e73631 100644 --- a/src/script_steps/constants.rs +++ b/src/script_steps/constants.rs @@ -93,6 +93,7 @@ pub enum ScriptStep { ResetAccountPassword = 136, EnableAccount = 137, ReLogin = 138, + InsertFromURL = 160, OpenManageThemes = 165, RefreshObject = 167, ClosePopover = 169, diff --git a/src/script_steps/insert_from_url.rs b/src/script_steps/insert_from_url.rs new file mode 100644 index 00000000..9b6e33d7 --- /dev/null +++ b/src/script_steps/insert_from_url.rs @@ -0,0 +1,192 @@ +use quick_xml::Reader; +use quick_xml::events::Event; + +use crate::script_steps::parameters::boolean::Boolean; +use crate::script_steps::parameters::calculation::Calculation; +use crate::script_steps::parameters::target::Target; +use crate::utils::attributes::get_attribute; + +const VERIFY_SSL_CERTIFICATES: &str = "268435456"; +const SELECT: &str = "4096"; +const WITH_DIALOG: &str = "128"; + +pub fn sanitize(step: &str) -> Option { + let mut name = String::new(); + let mut select: Option = None; + let mut with_dialog: Option = None; + let mut target: Option = None; + let mut url: Option = None; + // "Verify SSL Certificates" is shown by name only when enabled, mirroring FileMaker. + let mut verify_ssl: Option = None; + let mut curl_options: Option = None; + + let mut reader = Reader::from_str(step); + let mut buf = Vec::new(); + loop { + match reader.read_event_into(&mut buf) { + Err(_) => continue, + Ok(Event::Eof) => break, + Ok(Event::Start(e)) => match e.name().as_ref() { + b"Step" => { + name = get_attribute(&e, "name").unwrap_or_default(); + } + b"Boolean" => { + let id = get_attribute(&e, "id").unwrap_or_default(); + let label = get_attribute(&e, "type").unwrap_or_default(); + let is_on = get_attribute(&e, "value").as_deref() == Some("True"); + match id.as_str() { + VERIFY_SSL_CERTIFICATES if is_on => verify_ssl = Some(label), + SELECT if is_on => select = Some(label), + WITH_DIALOG => { + with_dialog = Some(format!("{label}: {}", Boolean::on_off(is_on))) + } + _ => {} + } + } + b"Parameter" => match get_attribute(&e, "type").as_deref() { + Some("Target") => target = Target::from_xml(&mut reader, &e).display(), + Some("URL") => { + url = Calculation::from_xml(&mut reader, &e) + .display() + .map(|c| format!("URL: {c}")) + } + Some("Calculation") => { + curl_options = Calculation::from_xml(&mut reader, &e) + .display() + .map(|c| format!("cURL options: {c}")) + } + _ => {} + }, + _ => {} + }, + _ => {} + } + buf.clear(); + } + + if name.is_empty() { + return None; + } + + let parts: Vec = [ + select, + with_dialog, + target.map(|t| format!("Target: {t}")), + url, + verify_ssl, + curl_options, + ] + .into_iter() + .flatten() + .collect(); + + if parts.is_empty() { + Some(name) + } else { + Some(format!("{name} [ {} ]", parts.join(" ; "))) + } +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn empty_url() { + let xml = r#" + + + + + + + + + + + + + + + + + "#; + + let expected_output = Some("Insert from URL [ Select ; With dialog: OFF ]".to_string()); + assert_eq!(sanitize(xml.trim()), expected_output); + } + + #[test] + fn full_with_verify_ssl_and_curl() { + let xml = r#" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "#; + + let expected_output = Some("Insert from URL [ Select ; With dialog: OFF ; Target: $response ; URL: $url ; Verify SSL Certificates ; cURL options: $curl ]".to_string()); + assert_eq!(sanitize(xml.trim()), expected_output); + } + + #[test] + fn url_without_target_or_curl() { + let xml = r#" + + + + + + + + + + + + + + + + + + + + + + + "#; + + let expected_output = Some("Insert from URL [ With dialog: ON ; URL: $url ]".to_string()); + assert_eq!(sanitize(xml.trim()), expected_output); + } +} diff --git a/src/script_steps/mod.rs b/src/script_steps/mod.rs index f5477150..800e9218 100644 --- a/src/script_steps/mod.rs +++ b/src/script_steps/mod.rs @@ -7,6 +7,7 @@ mod exit_script; mod go_to_object; mod go_to_portal_row; mod go_to_record; +mod insert_from_url; mod insert_text; mod is_enabled; mod omit_multiple_records; diff --git a/src/script_steps/sanitizer.rs b/src/script_steps/sanitizer.rs index 2406ba44..24c531a1 100644 --- a/src/script_steps/sanitizer.rs +++ b/src/script_steps/sanitizer.rs @@ -14,6 +14,7 @@ pub fn sanitize(step_id: u32, step_xml: &str, flags: &Flags) -> Option { script_steps::perform_find::sanitize(step_xml) } ScriptStep::InsertText => script_steps::insert_text::sanitize(step_xml), + ScriptStep::InsertFromURL => script_steps::insert_from_url::sanitize(step_xml), ScriptStep::SetField => script_steps::set_field_data::sanitize(step_xml), ScriptStep::ReplaceFieldContents => { script_steps::replace_field_contents::sanitize(step_xml) diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap index 2b3fffe1..9ea4c8f1 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $curloptions ; " --request DELETE" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Request Access Token - ID 4.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Request Access Token - ID 4.txt.snap index 4bcaf138..6134d810 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Request Access Token - ID 4.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Authentication - ID 10/Request Access Token - ID 4.txt.snap @@ -44,7 +44,7 @@ Ende (wenn) # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap index e12485e5..90ecfb66 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $my.certpath ; JSONGetElement ( $$my.result ; "response.csrFilePath" ) ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap index 2a955361..f8943a03 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap @@ -26,7 +26,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap index c55cdec1..9daddec5 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap index e843b7c0..c55eb870 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap @@ -46,7 +46,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap index 54b34bd9..e81def0f 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap @@ -56,7 +56,7 @@ Sonst, wenn [ $_param = "disconnect" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # update database listing Script ausführen [ "List Clients" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/List Clients - ID 65.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/List Clients - ID 65.txt.snap index 1d0dfa1b..8e84625c 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/List Clients - ID 65.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/List Clients - ID 65.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap index c9dd1505..a4e7d182 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap @@ -64,7 +64,7 @@ Sonst, wenn [ $_param = "send" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Ende (wenn) diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap index b0c8f725..f754a418 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap index cbe0de1c..d8a4ab37 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap index 4cfb2e1e..982fe2e3 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap @@ -29,7 +29,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap index 6b366460..6a8ef54b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap @@ -40,7 +40,7 @@ Wenn [ NICHT IstLeer ( PUB__publickeys::dateAdded ) ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap index 748dbb6a..01d12a55 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap index 24909a70..2196a52d 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap index 598442f9..c2c06ba1 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap index 73bc556d..080ec2a3 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap index 449dbb94..7dd1c4df 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap index 0172283b..5f3e667c 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap index 67576f2a..e5031766 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap index ea28f3d7..141851c2 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap index 5fb6a40b..48ea4892 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap index 061b93c0..f5310665 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap index 445fddfd..1552dade 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap index 208097d8..6a2f8df8 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap index 78febef4..f1969da5 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap index ddc6a689..5b2b9fac 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap index cb7e04a8..8062226c 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap index 8ef1b7ae..3a26acb3 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap index 98611f6c..9f2c98bf 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap index 676b7259..b789da45 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Status - ID 30.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Status - ID 30.txt.snap index e9ed76be..b51e317b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Status - ID 30.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Get Server Status - ID 30.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap index 49324500..12608767 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap index c46af254..e93669c7 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap index d1577a15..cb4d6590 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap @@ -51,7 +51,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap index f80f9122..cf24694f 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap index 18841025..03622e16 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap index 65d5359d..8a4f046f 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap index 3293ee97..42d1f75b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap @@ -44,7 +44,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Name - ID 119.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Name - ID 119.txt.snap index 7f31e078..31ead7be 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Name - ID 119.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Name - ID 119.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap index 246c0890..0a81ca44 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap index 37d49611..fd5ad520 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap index 13c3493b..6c1599fa 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap index 535b4a0d..cc911772 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Status - ID 42.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Status - ID 42.txt.snap index 8b49d72b..b852d859 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Status - ID 42.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Database Server - ID 12/Update Server Status - ID 42.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/List Databases - ID 23.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/List Databases - ID 23.txt.snap index 5feb22c5..4c1f590c 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/List Databases - ID 23.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/List Databases - ID 23.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap index d2d521b2..6efa2583 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap @@ -62,7 +62,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # update database listing Script ausführen [ "List Databases" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap index 5f9d2a80..6f96463a 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap @@ -106,7 +106,7 @@ Sonst # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # update database listing Script ausführen [ "List Databases" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap index d8466e71..9e3e442f 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap index 5ed7282d..1b06a0b5 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap index 06ac472e..9e513033 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap index 68673793..96317ecf 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap index 6ad04b73..10c9e4b0 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap index 486bdff0..ff6890be 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap index 486b60d4..74a36826 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap index 5b85d670..3567cb0c 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap index 77ae1e8f..17d6ad40 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap index 281080ad..efabf140 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap index b1ea75fb..08d497c6 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap index 09b5fc4c..9c94ca42 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap index c81d1dd4..72cec610 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Databases - ID 80.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Databases - ID 80.txt.snap index 6e1e4e61..2879ef42 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Databases - ID 80.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Databases - ID 80.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] Wenn [ $my.response = "200 OK" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Layouts - ID 81.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Layouts - ID 81.txt.snap index 127b8c80..e2a8881e 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Layouts - ID 81.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Layouts - ID 81.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response DAPI" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Product Info - ID 82.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Product Info - ID 82.txt.snap index ef6cee74..52997594 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Product Info - ID 82.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Product Info - ID 82.txt.snap @@ -23,7 +23,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] Wenn [ $my.response = "200 OK" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Records - ID 77.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Records - ID 77.txt.snap index 376129e6..3c328974 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Records - ID 77.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Records - ID 77.txt.snap @@ -27,7 +27,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response DAPI" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Scripts - ID 83.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Scripts - ID 83.txt.snap index 94247a17..9cf66a35 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Scripts - ID 83.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Get Scripts - ID 83.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response DAPI" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap index 2f852a37..65fd4e47 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $curloptions ; " --request DELETE" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap index 1bc671d3..bcc2113e 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $curloptions ; " --request POST" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap index c78652e1..144bd6ab 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get DBS Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap index 92ab2955..5bee0d5b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap @@ -36,7 +36,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get DBS Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap index fcfd9f2e..b1c97b23 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap @@ -43,7 +43,7 @@ Variable setzen [ $curloptions ; " --request POST" & " --data @$json" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap index be14feff..5406a8d3 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get WPE Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap index a6ac2fd0..a6cf6816 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get WPE Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap index b78de1e1..0894b6d0 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap index 2381e2f2..11c4b942 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap index d2b10978..b44ecb09 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap index 23ed264d..50dbf048 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap index cb6561ef..7bf040b0 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap index be65ad52..e8436cc9 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap index 735f1ecc..1ef44f96 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap @@ -28,7 +28,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap index 7a68ff1c..a79d92a5 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap index b84210a8..e7e7a658 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap index bbd2771c..fda92fb4 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap index 1ac609c2..17a02259 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap index 89383ba7..fda9c05e 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Get License Information - ID 91.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Get License Information - ID 91.txt.snap index 1d328e10..43ef8ad2 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Get License Information - ID 91.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Get License Information - ID 91.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Import License - ID 92.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Import License - ID 92.txt.snap index 0d503229..940f52c3 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Import License - ID 92.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Import License - ID 92.txt.snap @@ -39,7 +39,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Sync License - ID 93.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Sync License - ID 93.txt.snap index 489bb751..383b45d1 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Sync License - ID 93.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/License - ID 89/Sync License - ID 93.txt.snap @@ -26,7 +26,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap index b3f4fa10..92bf7f03 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap index 4d6c2edb..4af0fd06 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap index edb2868f..c4018d2b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap @@ -46,7 +46,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap index 17b9a066..8cee1a77 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap index bd4dccc7..f9e57f8b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/OData Settings - ID 156.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/OData Settings - ID 156.txt.snap index 91068e81..6ec481ec 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/OData Settings - ID 156.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/OData Settings - ID 156.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/Update OData Settings - ID 157.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/Update OData Settings - ID 157.txt.snap index 2c1d8864..82f694c1 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/Update OData Settings - ID 157.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/OData - ID 155/Update OData Settings - ID 157.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/PHP Settings - ID 24.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/PHP Settings - ID 24.txt.snap index 4958336e..bdbfb72b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/PHP Settings - ID 24.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/PHP Settings - ID 24.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/Update PHP Settings - ID 39.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/Update PHP Settings - ID 39.txt.snap index cf1b7c68..797f284e 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/Update PHP Settings - ID 39.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/PHP - ID 25/Update PHP Settings - ID 39.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap index 0f4fb9bc..5d81f57b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap @@ -36,7 +36,7 @@ Variable setzen [ $curloptions ; " --request DELETE" & " --header \"Content-Length: 0\"" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap index e974b107..50033d0a 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap @@ -36,7 +36,7 @@ Variable setzen [ $curloptions ; " --request POST" & " --header \"Content-Length: 0\"" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap index 5efe176a..655133b7 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap @@ -247,7 +247,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- Fenster schließen [ Name: "Schedule Detail" ; Current file ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # list schedules again diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap index 78681ee5..a6b0f316 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap @@ -41,7 +41,7 @@ Variable setzen [ $curloptions ; " --request PATCH" & " --data @$json" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Get Schedule - ID 72.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Get Schedule - ID 72.txt.snap index 2ee93518..e15af491 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Get Schedule - ID 72.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Get Schedule - ID 72.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/List Schedules - ID 20.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/List Schedules - ID 20.txt.snap index db7db3de..50fc6710 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/List Schedules - ID 20.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/List Schedules - ID 20.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # save cache of schedules diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap index eebc8357..d109f66b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap @@ -39,7 +39,7 @@ Variable setzen [ $curloptions ; " --request PATCH" & " --data @$json" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap index a418e426..d9f67f8c 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $error ; 0 ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -// Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +// Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] // Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $$my.result ; JSONSetElement ( "" ; "response.schedules" ; FMS_SCHS__schedules_saved_selected::json ; JSONArray ) ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap index f032de77..903de80e 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap @@ -47,9 +47,9 @@ Wenn [ Abs ( Hole ( SystemPlattform ) ) = "1" ] Wenn [ Hole ( LetzteFehlerNr ) = 0 ] # get files Variable setzen [ $this.url ; "file://" & $this.file & ".key" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; URL: $this.url ] Variable setzen [ $this.url ; "file://" & $this.file & ".key.pem" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; URL: $this.url ] # get text from files Feldwert setzen [ PUB__publickeys::privateKey ; TextDecode ( PUB__publickeys::privateKey_r ; "utf-8" ) ] Feldwert setzen [ PUB__publickeys::publicKey ; Austauschen ( @@ -101,9 +101,9 @@ Sonst, wenn [ Abs ( Hole ( SystemPlattform ) ) = "2" ] Wenn [ Hole ( LetzteFehlerNr ) = 0 ] # get files Variable setzen [ $this.url ; "file:///" & $this.file & ".key" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; URL: $this.url ] Variable setzen [ $this.url ; "file:///" & $this.file & ".key.pem" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; URL: $this.url ] # get text from files Feldwert setzen [ PUB__publickeys::privateKey ; TextDecode ( PUB__publickeys::privateKey_r ; "utf-8" ) ] Feldwert setzen [ PUB__publickeys::publicKey ; TextDecode ( PUB__publickeys::publicKey_r ; "utf-8" ) ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap index 189a866e..83056d0b 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap index af6ab814..b508e3d6 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap index 8ed1add7..1eeea540 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap index 1ae43fd9..e0e90256 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap index 2ef08bde..495de0a8 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap index 00768ce8..b60c9dd4 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap index d6809cb6..a07e0bf0 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap @@ -26,7 +26,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/Update XML Settings - ID 40.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/Update XML Settings - ID 40.txt.snap index adca2556..bf125dd9 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/Update XML Settings - ID 40.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/Update XML Settings - ID 40.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/XML Settings - ID 28.txt.snap b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/XML Settings - ID 28.txt.snap index 8fb906b0..4a6fd769 100644 --- a/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/XML Settings - ID 28.txt.snap +++ b/tests/snapshots_db_lossless/Admin API Tool/scripts_sanitized/XML - ID 27/XML Settings - ID 28.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap index 60e330f2..20f08f9e 100644 --- a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap +++ b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap @@ -157,7 +157,7 @@ End If # 2024-07-17 mkos: Don't automatically encode url since ConvertFromFileMakerPath will already do that for us If [ $errorCode = 0 ] Set Variable [ $start ; Get ( CurrentTimeUTCMilliseconds ) ] - Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: OFF ; Target: SaXMLDelivery::xmlFile ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Insert from URL [ Select ; With dialog: OFF ; Target: SaXMLDelivery::xmlFile ; URL: ConvertFromFileMakerPath ( $xmlPath ; URLPath ) ] Set Variable [ $errorCode ; Get ( LastError ) ] Set Variable [ $timeToUpload[1] ; GetAsTime ( ( Get ( CurrentTimeUTCMilliseconds ) - $start ) / 1000 ) ] End If diff --git a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap index 93120a4f..eafcdd6f 100644 --- a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap +++ b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap @@ -134,7 +134,7 @@ End If # Make api call to trigger pipeline If [ $errorCode = 0 ] - Insert from URL [ Verify SSL Certificates: ON ; Select: ON ; With dialog: OFF ; Target: $response ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curlOptions ] + Insert from URL [ Select ; With dialog: OFF ; Target: $response ; URL: $url ; Verify SSL Certificates ; cURL options: $curlOptions ] Set Variable [ $errorCode[1] ; Get ( LastError ) ] Set Variable [ $responseStatusCode[1] ; // We would typically use a custom function here, but we wanted this script to have as few dependencies as possible // Signature: diff --git a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap index 4cab27a8..6cfebafc 100644 --- a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap +++ b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap @@ -257,7 +257,7 @@ Insert Calculated Result [ Select: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; Target: $WebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: ON ; Target: $WebContent ] Insert Current Date [ Select: OFF ] Insert Current Date [ Select: ON ] @@ -363,25 +363,25 @@ Insert from Index [ Select: ON ; 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ] Insert from Last Visited [ Select: ON ; 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $url ] +Insert from URL [ Select ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $url ] +Insert from URL [ Select ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $url ] -Insert from URL [ Verify SSL Certificates: ON ; Select: ON ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: ON ; Select: OFF ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; "-X PUT" ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $URL ; Verify SSL Certificates ; cURL options: $curl_options ] +Insert from URL [ With dialog: OFF ] +Insert from URL [ With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $URL ; Verify SSL Certificates ] +Insert from URL [ Select ; With dialog: ON ; cURL options: "-X PUT" ] +Insert from URL [ With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ] # ONLY ONE Param => Assume Source Var # The following INFREQUENT form has no target -> NEEDS a currently selected layout field -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ With dialog: OFF ; URL: $URL ] +Insert from URL [ With dialog: OFF ; Target: $TargetWebContent ; URL: "someurl" ] +Insert from URL [ With dialog: OFF ; Target: $TargetWebContent ; URL: $SourceURL ] # TODO: MBS must interpret first var as Target when 2 Vars between 'With dialog' and 'cURL options': Target Variable + URL Variable -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: ON ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $cURL_Options ] +Insert from URL [ With dialog: ON ; Target: $TargetWebContent ; URL: $URL ; cURL options: $cURL_Options ] # EGIT - in cURL options ist es GEMISCHT: MANCHE Vars sind Target Vars, manche QUELL Vars -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; " +Insert from URL [ With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: "http://www.mrwatson.de" ; cURL options: " --trace $TargetDump --uploadOrWhatever $SourceFile " ] diff --git a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Scripts With Everything - ID 21/Fields - ID 25.txt.snap b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Scripts With Everything - ID 21/Fields - ID 25.txt.snap index 2337f356..e03e7394 100644 --- a/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Scripts With Everything - ID 21/Fields - ID 25.txt.snap +++ b/tests/snapshots_db_lossless/Ooe/scripts_sanitized/Scripts With Everything - ID 21/Fields - ID 25.txt.snap @@ -13,7 +13,7 @@ Insert File Insert from Device [ Full ] Insert from Index [ Select: ON ] Insert from Last Visited [ Select: ON ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: OFF ] Insert PDF [ Store only a reference: OFF ] Insert Picture [ Store only a reference: OFF ] Insert Text [ Select ] diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap index 53ecee4e..3ca97a38 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap @@ -169,7 +169,7 @@ Variable setzen [ $Error ; Hole ( ScriptErgebnis ) ] URL öffnen [ Mit Dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] # @var $a - this comment defines the variable a -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $a ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $a ] E-Mail senden [ ⚠️ PARAMETER "Email" NOT PARSED ⚠️ ] AppleScript ausführen [ ⚠️ PARAMETER "Options" NOT PARSED ⚠️ ] diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap index 92db303b..f5f9f454 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap @@ -257,7 +257,7 @@ Berechneten Wert einfügen [ Auswahl: ON ; Target: _Syntax::_k1 ; _Syntax::_kCal -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $WebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $WebContent ] Systemdatum einfügen [ Auswahl: OFF ] Systemdatum einfügen [ Auswahl: ON ] @@ -363,25 +363,25 @@ Aus Index einfügen [ Auswahl: ON ; _Home::_gInputText1 ] Aus zuletzt geöffnetem Satz einfügen [ Auswahl: ON ; _Home::_gInputText1 ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: _Syntax::_kActivePaletteName ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; URL: $url ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; URL: $url ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: _Syntax::_kActivePaletteName ; URL: $url ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: ON ; Auswahl: ON ; Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: ON ; Auswahl: OFF ; Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; "-X PUT" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: ON ; Target: _Home::_gInputText1 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; URL: $URL ; SSL-Zertifikate verifizieren ; cURL options: $curl_options ] +Aus URL einfügen [ Mit Dialog: OFF ] +Aus URL einfügen [ Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; URL: $URL ; SSL-Zertifikate verifizieren ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; cURL options: "-X PUT" ] +Aus URL einfügen [ Mit Dialog: ON ; Target: _Home::_gInputText1 ] # ONLY ONE Param => Assume Source Var # The following INFREQUENT form has no target -> NEEDS a currently selected layout field -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Mit Dialog: OFF ; URL: $URL ] +Aus URL einfügen [ Mit Dialog: OFF ; Target: $TargetWebContent ; URL: "someurl" ] +Aus URL einfügen [ Mit Dialog: OFF ; Target: $TargetWebContent ; URL: $SourceURL ] # TODO: MBS must interpret first var as Target when 2 Vars between 'With dialog' and 'cURL options': Target Variable + URL Variable -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: ON ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $cURL_Options ] +Aus URL einfügen [ Mit Dialog: ON ; Target: $TargetWebContent ; URL: $URL ; cURL options: $cURL_Options ] # EGIT - in cURL options ist es GEMISCHT: MANCHE Vars sind Target Vars, manche QUELL Vars -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; Target: _Home::_gInputText1 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; " +Aus URL einfügen [ Mit Dialog: OFF ; Target: _Home::_gInputText1 ; URL: "http://www.mrwatson.de" ; cURL options: " --trace $TargetDump --uploadOrWhatever $SourceFile " ] diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap index 91f117e1..63b82afe 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap @@ -161,7 +161,7 @@ Sonst, wenn [] Plugin-Datei installieren PDF einfügen [ Nur Verweis speichern: OFF ] Audio/Video einfügen [ Nur Verweis speichern: OFF ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] Von Gerät einfügen [ Original ] <Unbekannt> [162] <Unbekannt> [163] diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap index 71df779d..8f649480 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap @@ -83,7 +83,7 @@ Text einfügen [ Select ] Von Gerät einfügen [ Original ] Aus Index einfügen [ Auswahl: ON ] Aus zuletzt geöffnetem Satz einfügen [ Auswahl: ON ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] Menüset installieren [ ⚠️ PARAMETER "CustomMenuSet" NOT PARSED ⚠️ ] BeiTimer-Script installieren Plugin-Datei installieren diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap index e176e682..ba7a97df 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap @@ -96,7 +96,7 @@ Drucker einrichten [ ⚠️ PARAMETER "Restore" NOT PARSED ⚠️ ; Mit Dialog: Einfügen [ Auswahl: ON ; Ohne Stil: OFF ] PDF einfügen [ Nur Verweis speichern: OFF ] Audio/Video einfügen [ Nur Verweis speichern: OFF ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] Von Gerät einfügen [ Original ] Aus Index einfügen [ Auswahl: ON ] Aus zuletzt geöffnetem Satz einfügen [ Auswahl: ON ] diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap index ba45a987..bdde08c0 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap @@ -10,5 +10,5 @@ Container verwalten Plugin-Datei installieren PDF einfügen [ Nur Verweis speichern: OFF ] Audio/Video einfügen [ Nur Verweis speichern: OFF ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] # Command 161 => see NEXT diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap index 5a954d06..314d1df2 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap @@ -11,7 +11,7 @@ Systemdatum einfügen [ Auswahl: ON ; Target: $UseSetVariable ] Systemuhrzeit einfügen [ Auswahl: ON ; Target: $UseSetVariable ] Benutzernamen einfügen [ Auswahl: ON ; Target: $UseSetVariable ] Datei einfügen [ ⚠️ PARAMETER "Options" NOT PARSED ⚠️ ; Target: $FileContents ; ⚠️ PARAMETER "UniversalPathList" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $WebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $WebContent ] # FYI: *NOT* Changed: Audio/Video einfügen [ Nur Verweis speichern: OFF ] @@ -26,7 +26,7 @@ Einfügen [ Auswahl: ON ; Ohne Stil: OFF ] Löschen [ Auswahl: ON ] # Changed: cURL Options -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; "-X PUT" ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; cURL options: "-X PUT" ] # New Script step: Regionsmonitor-Script konfigurieren [ ⚠️ PARAMETER "Monitor" NOT PARSED ⚠️ ; Name: $BeaconName ; "### 20230303 @mrwatson-de v1.13 ###" ; ⚠️ PARAMETER "UUID" NOT PARSED ⚠️ ; ⚠️ PARAMETER "Major" NOT PARSED ⚠️ ; ⚠️ PARAMETER "Minor" NOT PARSED ⚠️ ] diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap index b97888de..b9142a10 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap @@ -66,10 +66,10 @@ Benutzernamen einfügen [ Auswahl: ON ; Target: $TargetVar ] Von Gerät einfügen [ Vollbild ] # SUCCESS: -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: _Home::_gEmptyField ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: _Home::_gEmptyField ; URL: $ThisIsAVar ] # SUCCESS: -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $TargetVar ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $TargetVar ; URL: $ThisIsAVar ] # SUCCESS: Datei einfügen [ Target: $TargetVar ] diff --git a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap index cc6bc68c..a8501f16 100644 --- a/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap +++ b/tests/snapshots_db_lossless/fmSyntaxColorizer/scripts_sanitized/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap @@ -2011,15 +2011,15 @@ Schleife (Anfang) [ Flush: Immer ] # @var $fmide_target_temp Wenn [ $with_dialog ] Wenn [ $do_not_automatically_encode_url ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Sonst - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Ende (wenn) Sonst Wenn [ $do_not_automatically_encode_url ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Sonst - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Ende (wenn) Ende (wenn) Wenn [ ZeichenLinks( $target ; 1 ) ≠ "$" ODER diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap index 2b3fffe1..9ea4c8f1 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Invalidate Access Token - ID 15.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $curloptions ; " --request DELETE" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Request Access Token - ID 4.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Request Access Token - ID 4.txt.snap index 4bcaf138..6134d810 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Request Access Token - ID 4.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Authentication - ID 10/Request Access Token - ID 4.txt.snap @@ -44,7 +44,7 @@ Ende (wenn) # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap index e12485e5..90ecfb66 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Create SSL CSR - ID 105.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $my.certpath ; JSONGetElement ( $$my.result ; "response.csrFilePath" ) ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap index 2a955361..f8943a03 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Delete SSL Certificate - ID 104.txt.snap @@ -26,7 +26,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap index c55cdec1..9daddec5 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Get Server Certificate Information - ID 102.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap index e843b7c0..c55eb870 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Certificate - ID 100/Import SSL Certificate - ID 103.txt.snap @@ -46,7 +46,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap index 54b34bd9..e81def0f 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Disconnect Client ( json ) - ID 47.txt.snap @@ -56,7 +56,7 @@ Sonst, wenn [ $_param = "disconnect" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # update database listing Script ausführen [ "List Clients" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/List Clients - ID 65.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/List Clients - ID 65.txt.snap index 1d0dfa1b..8e84625c 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/List Clients - ID 65.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/List Clients - ID 65.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap index c9dd1505..a4e7d182 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Clients - ID 18/Send Message to Client ( json ) - ID 48.txt.snap @@ -64,7 +64,7 @@ Sonst, wenn [ $_param = "send" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Ende (wenn) diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap index b0c8f725..f754a418 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Add FileMaker Admin API Public Keys Server Setting - ID 175.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap index cbe0de1c..d8a4ab37 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Allow certificate with unknown revocation status - ID 167.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap index 4cfb2e1e..982fe2e3 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Cancel currently running backup - ID 168.txt.snap @@ -29,7 +29,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap index 6b366460..6a8ef54b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Delete FileMaker Admin API Public Keys - ID 176.txt.snap @@ -40,7 +40,7 @@ Wenn [ NICHT IstLeer ( PUB__publickeys::dateAdded ) ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap index 748dbb6a..01d12a55 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Additional Database Folder Setting - ID 121.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap index 24909a70..2196a52d 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Enable_Disable Server Discovery Setting - ID 163.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap index 598442f9..c2c06ba1 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Allow certificate with unknown revocation status - ID 166.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap index 73bc556d..080ec2a3 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Authenticated Stream Setting - ID 164.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap index 449dbb94..7dd1c4df 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get FileMaker Admin API Public Keys Server Setting - ID 173.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap index 0172283b..5f3e667c 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Persistent Cache Settings - ID 181.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap index 67576f2a..e5031766 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Restrict Access - ID 171.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap index ea28f3d7..141851c2 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Database Folder Path - ID 125.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap index 5fb6a40b..48ea4892 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Additional Remote Container Folder Path - ID 126.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap index 061b93c0..f5310665 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Backup Folder Path - ID 127.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap index 445fddfd..1552dade 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Current Folder Settings - ID 122.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap index 208097d8..6a2f8df8 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Default Database Folder Path - ID 123.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap index 78febef4..f1969da5 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server General Settings - ID 14.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap index ddc6a689..5b2b9fac 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Metadata - ID 118.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap index cb7e04a8..8062226c 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Parallel Backup Setting - ID 169.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap index 8ef1b7ae..3a26acb3 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Progressive Backup Folder Path - ID 128.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap index 98611f6c..9f2c98bf 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Secure Database Folder Path - ID 124.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap index 676b7259..b789da45 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Security Settings - ID 36.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Status - ID 30.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Status - ID 30.txt.snap index e9ed76be..b51e317b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Status - ID 30.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Get Server Status - ID 30.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap index 49324500..12608767 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Authenticated Stream Setting - ID 165.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap index c46af254..e93669c7 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Set Persistent Cache Setting - ID 182.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap index d1577a15..cb4d6590 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Admin Console Account - ID 132.txt.snap @@ -51,7 +51,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap index f80f9122..cf24694f 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update FileMaker Admin API Public Keys Server Setting - ID 174.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap index 18841025..03622e16 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Restrict Access - ID 172.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap index 65d5359d..8a4f046f 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Default Backup Folder Path - ID 129.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap index 3293ee97..42d1f75b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server General Settings - ID 37.txt.snap @@ -44,7 +44,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Name - ID 119.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Name - ID 119.txt.snap index 7f31e078..31ead7be 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Name - ID 119.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Name - ID 119.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap index 246c0890..0a81ca44 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Parallel Backup Setting - ID 170.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap index 37d49611..fd5ad520 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backup Folder Path - ID 130.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap index 13c3493b..6c1599fa 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Progressive Backups Setting - ID 120.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap index 535b4a0d..cc911772 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Security Settings - ID 38.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Status - ID 42.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Status - ID 42.txt.snap index 8b49d72b..b852d859 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Status - ID 42.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Database Server - ID 12/Update Server Status - ID 42.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/List Databases - ID 23.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/List Databases - ID 23.txt.snap index 5feb22c5..4c1f590c 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/List Databases - ID 23.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/List Databases - ID 23.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap index d2d521b2..6efa2583 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for All Databases ( json ) - ID 67.txt.snap @@ -62,7 +62,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # update database listing Script ausführen [ "List Databases" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap index 5f9d2a80..6f96463a 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Databases - ID 21/Perform Database Operations for a Database ( json ) - ID 43.txt.snap @@ -106,7 +106,7 @@ Sonst # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # update database listing Script ausführen [ "List Databases" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap index d8466e71..9e3e442f 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Amazon - ID 145.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap index 5ed7282d..1b06a0b5 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for External Server Accounts - ID 144.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap index 06ac472e..9e513033 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Google - ID 146.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap index 68673793..96317ecf 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Database Sign-In for Microsoft - ID 147.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap index 6ad04b73..10c9e4b0 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Enable_Disable Admin Console Sign-In - ID 143.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap index 486bdff0..ff6890be 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Amazon Identity Provider Information - ID 137.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap index 486b60d4..74a36826 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get External Account Group Name - ID 134.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap index 5b85d670..3567cb0c 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Google Identity Provider Information - ID 139.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap index 77ae1e8f..17d6ad40 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Get Microsoft Identity Provider Information - ID 141.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap index 281080ad..efabf140 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Amazon Identity Provider Information - ID 138.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap index b1ea75fb..08d497c6 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update External Account Group Name - ID 135.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap index 09b5fc4c..9c94ca42 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Google Identity Provider Information - ID 140.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap index c81d1dd4..72cec610 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/External Authentication - ID 133/Update Microsoft Identity Provider Information - ID 142.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Databases - ID 80.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Databases - ID 80.txt.snap index 6e1e4e61..2879ef42 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Databases - ID 80.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Databases - ID 80.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] Wenn [ $my.response = "200 OK" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Layouts - ID 81.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Layouts - ID 81.txt.snap index 127b8c80..e2a8881e 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Layouts - ID 81.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Layouts - ID 81.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response DAPI" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Product Info - ID 82.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Product Info - ID 82.txt.snap index ef6cee74..52997594 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Product Info - ID 82.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Product Info - ID 82.txt.snap @@ -23,7 +23,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] Wenn [ $my.response = "200 OK" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Records - ID 77.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Records - ID 77.txt.snap index 376129e6..3c328974 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Records - ID 77.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Records - ID 77.txt.snap @@ -27,7 +27,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response DAPI" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Scripts - ID 83.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Scripts - ID 83.txt.snap index 94247a17..9cf66a35 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Scripts - ID 83.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Get Scripts - ID 83.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response DAPI" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap index 2f852a37..65fd4e47 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Invalidate Data API Access Token - ID 74.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $curloptions ; " --request DELETE" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap index 1bc671d3..bcc2113e 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FM Data API - ID 75/Request Data API Access Token - ID 73.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $curloptions ; " --request POST" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] # inspect result Variable setzen [ $my.response ; Austauschen ( HoleWert ( $$my.headers ; 1 ) ; "HTTP/1.1 " ; "" ) ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap index c78652e1..144bd6ab 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Install Plug-ins Script - ID 113.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get DBS Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap index 92ab2955..5bee0d5b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable DBS Plug-ins - ID 114.txt.snap @@ -36,7 +36,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get DBS Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap index fcfd9f2e..b1c97b23 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable Individual Plug-in ( json ) - ID 115.txt.snap @@ -43,7 +43,7 @@ Variable setzen [ $curloptions ; " --request POST" & " --data @$json" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap index be14feff..5406a8d3 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Install Plug-in Script - ID 111.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get WPE Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap index a6ac2fd0..a6cf6816 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Enable_Disable WPE Plug-ins - ID 112.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Script ausführen [ "Get WPE Plug-in Configuration" ; Specified: Aus Liste ; Parameter: ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap index b78de1e1..0894b6d0 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get DBS Plug-in Configuration - ID 109.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap index 2381e2f2..11c4b942 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get Plug-in List - ID 106.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap index d2b10978..b44ecb09 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FMPlugins - ID 107/Get WPE Plug-in Configuration - ID 110.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap index 23ed264d..50dbf048 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Enable_Disable Database Filtering - ID 154.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap index cb6561ef..7bf040b0 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker Pro and FileMaker Go Session Timeout Setting - ID 150.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap index be65ad52..e8436cc9 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/FileMaker WebDirect Session Timeout Setting - ID 152.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap index 735f1ecc..1ef44f96 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Get Database Filtering Setting - ID 180.txt.snap @@ -28,7 +28,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap index 7a68ff1c..a79d92a5 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker Pro and FileMaker Go Session Timeout - ID 151.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap index b84210a8..e7e7a658 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Client Settings - ID 148/Update FileMaker WebDirect Session Timeout - ID 153.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap index bbd2771c..fda92fb4 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Settings - ID 58.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap index 1ac609c2..17a02259 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/FileMaker Data API Usage - ID 131.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap index 89383ba7..fda9c05e 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/FileMaker Data API - ID 57/Update FileMaker Data API Settings - ID 59.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Get License Information - ID 91.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Get License Information - ID 91.txt.snap index 1d328e10..43ef8ad2 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Get License Information - ID 91.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Get License Information - ID 91.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Import License - ID 92.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Import License - ID 92.txt.snap index 0d503229..940f52c3 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Import License - ID 92.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Import License - ID 92.txt.snap @@ -39,7 +39,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Sync License - ID 93.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Sync License - ID 93.txt.snap index 489bb751..383b45d1 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Sync License - ID 93.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/License - ID 89/Sync License - ID 93.txt.snap @@ -26,7 +26,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap index b3f4fa10..92bf7f03 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Enable_Disable Email Notifications - ID 98.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap index 4d6c2edb..4af0fd06 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Get Email Notification Settings - ID 96.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap index edb2868f..c4018d2b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Notifications - ID 94/Update Email Notification Settings - ID 99.txt.snap @@ -46,7 +46,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap index 17b9a066..8cee1a77 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/ODBC_JDBC Settings - ID 54.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap index bd4dccc7..f9e57f8b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/ODBC_JDBC - ID 53/Update ODBC_JDBC Settings - ID 55.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/OData Settings - ID 156.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/OData Settings - ID 156.txt.snap index 91068e81..6ec481ec 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/OData Settings - ID 156.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/OData Settings - ID 156.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/Update OData Settings - ID 157.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/Update OData Settings - ID 157.txt.snap index 2c1d8864..82f694c1 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/Update OData Settings - ID 157.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/OData - ID 155/Update OData Settings - ID 157.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/PHP Settings - ID 24.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/PHP Settings - ID 24.txt.snap index 4958336e..bdbfb72b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/PHP Settings - ID 24.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/PHP Settings - ID 24.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/Update PHP Settings - ID 39.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/Update PHP Settings - ID 39.txt.snap index cf1b7c68..797f284e 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/Update PHP Settings - ID 39.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/PHP - ID 25/Update PHP Settings - ID 39.txt.snap @@ -34,7 +34,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap index 0f4fb9bc..5d81f57b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Delete Schedule ( json ) - ID 86.txt.snap @@ -36,7 +36,7 @@ Variable setzen [ $curloptions ; " --request DELETE" & " --header \"Content-Length: 0\"" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap index e974b107..50033d0a 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Duplicate Schedule ( json ) - ID 85.txt.snap @@ -36,7 +36,7 @@ Variable setzen [ $curloptions ; " --request POST" & " --header \"Content-Length: 0\"" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap index 5efe176a..655133b7 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Edit_Create Schedule - ID 49.txt.snap @@ -247,7 +247,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- Fenster schließen [ Name: "Schedule Detail" ; Current file ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # list schedules again diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap index 78681ee5..a6b0f316 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Enable_Disable Schedule ( json ) - ID 88.txt.snap @@ -41,7 +41,7 @@ Variable setzen [ $curloptions ; " --request PATCH" & " --data @$json" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Get Schedule - ID 72.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Get Schedule - ID 72.txt.snap index 2ee93518..e15af491 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Get Schedule - ID 72.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Get Schedule - ID 72.txt.snap @@ -35,7 +35,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/List Schedules - ID 20.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/List Schedules - ID 20.txt.snap index db7db3de..50fc6710 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/List Schedules - ID 20.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/List Schedules - ID 20.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # save cache of schedules diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap index eebc8357..d109f66b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/Run Schedule ( json ) - ID 87.txt.snap @@ -39,7 +39,7 @@ Variable setzen [ $curloptions ; " --request PATCH" & " --data @$json" & " --dump-header $$my.headers" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $this.id ; FMS__fmserver::ID ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap index a418e426..d9f67f8c 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Schedules - ID 16/TRIGGER - Load Saved Schedules - ID 116.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $error ; 0 ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -// Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +// Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] // Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Variable setzen [ $$my.result ; JSONSetElement ( "" ; "response.schedules" ; FMS_SCHS__schedules_saved_selected::json ; JSONArray ) ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap index f032de77..903de80e 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Utility - ID 32/Generate SSH Keys - ID 178.txt.snap @@ -47,9 +47,9 @@ Wenn [ Abs ( Hole ( SystemPlattform ) ) = "1" ] Wenn [ Hole ( LetzteFehlerNr ) = 0 ] # get files Variable setzen [ $this.url ; "file://" & $this.file & ".key" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; URL: $this.url ] Variable setzen [ $this.url ; "file://" & $this.file & ".key.pem" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; URL: $this.url ] # get text from files Feldwert setzen [ PUB__publickeys::privateKey ; TextDecode ( PUB__publickeys::privateKey_r ; "utf-8" ) ] Feldwert setzen [ PUB__publickeys::publicKey ; Austauschen ( @@ -101,9 +101,9 @@ Sonst, wenn [ Abs ( Hole ( SystemPlattform ) ) = "2" ] Wenn [ Hole ( LetzteFehlerNr ) = 0 ] # get files Variable setzen [ $this.url ; "file:///" & $this.file & ".key" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::privateKey_r ; URL: $this.url ] Variable setzen [ $this.url ; "file:///" & $this.file & ".key.pem" ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: PUB__publickeys::publicKey_r ; URL: $this.url ] # get text from files Feldwert setzen [ PUB__publickeys::privateKey ; TextDecode ( PUB__publickeys::privateKey_r ; "utf-8" ) ] Feldwert setzen [ PUB__publickeys::publicKey ; TextDecode ( PUB__publickeys::publicKey_r ; "utf-8" ) ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap index 189a866e..83056d0b 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/FileMaker WebDirect Settings - ID 62.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap index af6ab814..b508e3d6 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Get Nginx Load Balancer URL Setting - ID 183.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap index 8ed1add7..1eeea540 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update FileMaker WebDirect Settings - ID 63.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap index 1ae43fd9..e0e90256 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update Nginx Load Balancer URL Setting - ID 184.txt.snap @@ -31,7 +31,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap index 2ef08bde..495de0a8 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/Update WPE Settings - ID 71.txt.snap @@ -32,7 +32,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap index 00768ce8..b60c9dd4 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for All Machines - ID 69.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap index d6809cb6..a07e0bf0 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/Web Publishing Engine - ID 61/WPE Settings for a Single Machine - ID 70.txt.snap @@ -26,7 +26,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/Update XML Settings - ID 40.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/Update XML Settings - ID 40.txt.snap index adca2556..bf125dd9 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/Update XML Settings - ID 40.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/Update XML Settings - ID 40.txt.snap @@ -30,7 +30,7 @@ Variable setzen [ $$API.UPDATE ; "1" ] # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] # ------------------------------------------------------------- diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/XML Settings - ID 28.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/XML Settings - ID 28.txt.snap index 8fb906b0..4a6fd769 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/XML Settings - ID 28.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Admin API Tool/XML - ID 27/XML Settings - ID 28.txt.snap @@ -24,7 +24,7 @@ Variable setzen [ $curloptions ; " --request GET" & # ------------------------------------------------------------- # PROCESS # ------------------------------------------------------------- -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $$my.result ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curloptions ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $$my.result ; URL: $$server & $endpoint ; cURL options: $curloptions ] Script ausführen [ "Handle response" ; Specified: Aus Liste ; Parameter: ] Wenn [ Hole ( ScriptErgebnis ) = "1" ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap index 60e330f2..20f08f9e 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_createXml - ID 51.txt.snap @@ -157,7 +157,7 @@ End If # 2024-07-17 mkos: Don't automatically encode url since ConvertFromFileMakerPath will already do that for us If [ $errorCode = 0 ] Set Variable [ $start ; Get ( CurrentTimeUTCMilliseconds ) ] - Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: OFF ; Target: SaXMLDelivery::xmlFile ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Insert from URL [ Select ; With dialog: OFF ; Target: SaXMLDelivery::xmlFile ; URL: ConvertFromFileMakerPath ( $xmlPath ; URLPath ) ] Set Variable [ $errorCode ; Get ( LastError ) ] Set Variable [ $timeToUpload[1] ; GetAsTime ( ( Get ( CurrentTimeUTCMilliseconds ) - $start ) / 1000 ) ] End If diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap index 93120a4f..eafcdd6f 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/SaXMLDelivery - ID 50/saxmlDelivery_runPipeline - ID 53.txt.snap @@ -134,7 +134,7 @@ End If # Make api call to trigger pipeline If [ $errorCode = 0 ] - Insert from URL [ Verify SSL Certificates: ON ; Select: ON ; With dialog: OFF ; Target: $response ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curlOptions ] + Insert from URL [ Select ; With dialog: OFF ; Target: $response ; URL: $url ; Verify SSL Certificates ; cURL options: $curlOptions ] Set Variable [ $errorCode[1] ; Get ( LastError ) ] Set Variable [ $responseStatusCode[1] ; // We would typically use a custom function here, but we wanted this script to have as few dependencies as possible // Signature: diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap index 4cab27a8..6cfebafc 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Script from fmSyntaxColorizer - ID 37/All script steps and all options - ID 39.txt.snap @@ -257,7 +257,7 @@ Insert Calculated Result [ Select: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; Target: $WebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: ON ; Target: $WebContent ] Insert Current Date [ Select: OFF ] Insert Current Date [ Select: ON ] @@ -363,25 +363,25 @@ Insert from Index [ Select: ON ; 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ] Insert from Last Visited [ Select: ON ; 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $url ] +Insert from URL [ Select ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $url ] +Insert from URL [ Select ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $url ] -Insert from URL [ Verify SSL Certificates: ON ; Select: ON ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: ON ; Select: OFF ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; "-X PUT" ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $URL ; Verify SSL Certificates ; cURL options: $curl_options ] +Insert from URL [ With dialog: OFF ] +Insert from URL [ With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: $URL ; Verify SSL Certificates ] +Insert from URL [ Select ; With dialog: ON ; cURL options: "-X PUT" ] +Insert from URL [ With dialog: ON ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ] # ONLY ONE Param => Assume Source Var # The following INFREQUENT form has no target -> NEEDS a currently selected layout field -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ With dialog: OFF ; URL: $URL ] +Insert from URL [ With dialog: OFF ; Target: $TargetWebContent ; URL: "someurl" ] +Insert from URL [ With dialog: OFF ; Target: $TargetWebContent ; URL: $SourceURL ] # TODO: MBS must interpret first var as Target when 2 Vars between 'With dialog' and 'cURL options': Target Variable + URL Variable -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: ON ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $cURL_Options ] +Insert from URL [ With dialog: ON ; Target: $TargetWebContent ; URL: $URL ; cURL options: $cURL_Options ] # EGIT - in cURL options ist es GEMISCHT: MANCHE Vars sind Target Vars, manche QUELL Vars -Insert from URL [ Verify SSL Certificates: OFF ; Select: OFF ; With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; " +Insert from URL [ With dialog: OFF ; Target: 🚨🚨🚨 BROKEN REFERENCE 🚨🚨🚨 ; URL: "http://www.mrwatson.de" ; cURL options: " --trace $TargetDump --uploadOrWhatever $SourceFile " ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Scripts With Everything - ID 21/Fields - ID 25.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Scripts With Everything - ID 21/Fields - ID 25.txt.snap index 2337f356..e03e7394 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Scripts With Everything - ID 21/Fields - ID 25.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/Ooe/Scripts With Everything - ID 21/Fields - ID 25.txt.snap @@ -13,7 +13,7 @@ Insert File Insert from Device [ Full ] Insert from Index [ Select: ON ] Insert from Last Visited [ Select: ON ] -Insert from URL [ Verify SSL Certificates: OFF ; Select: ON ; With dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Insert from URL [ Select ; With dialog: OFF ] Insert PDF [ Store only a reference: OFF ] Insert Picture [ Store only a reference: OFF ] Insert Text [ Select ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap index 53ecee4e..3ca97a38 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/A typical script - ID 145.txt.snap @@ -169,7 +169,7 @@ Variable setzen [ $Error ; Hole ( ScriptErgebnis ) ] URL öffnen [ Mit Dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] # @var $a - this comment defines the variable a -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $a ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $a ] E-Mail senden [ ⚠️ PARAMETER "Email" NOT PARSED ⚠️ ] AppleScript ausführen [ ⚠️ PARAMETER "Options" NOT PARSED ⚠️ ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap index 92db303b..f5f9f454 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps and all options - ID 11.txt.snap @@ -257,7 +257,7 @@ Berechneten Wert einfügen [ Auswahl: ON ; Target: _Syntax::_k1 ; _Syntax::_kCal -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $WebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $WebContent ] Systemdatum einfügen [ Auswahl: OFF ] Systemdatum einfügen [ Auswahl: ON ] @@ -363,25 +363,25 @@ Aus Index einfügen [ Auswahl: ON ; _Home::_gInputText1 ] Aus zuletzt geöffnetem Satz einfügen [ Auswahl: ON ; _Home::_gInputText1 ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: _Syntax::_kActivePaletteName ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; URL: $url ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: _Syntax::_kActivePaletteName ; URL: $url ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: _Syntax::_kActivePaletteName ; URL: $url ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: ON ; Auswahl: ON ; Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: ON ; Auswahl: OFF ; Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; "-X PUT" ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: ON ; Target: _Home::_gInputText1 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; URL: $URL ; SSL-Zertifikate verifizieren ; cURL options: $curl_options ] +Aus URL einfügen [ Mit Dialog: OFF ] +Aus URL einfügen [ Mit Dialog: OFF ; Target: _Home::_gHomeScreenInfo ; URL: $URL ; SSL-Zertifikate verifizieren ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; cURL options: "-X PUT" ] +Aus URL einfügen [ Mit Dialog: ON ; Target: _Home::_gInputText1 ] # ONLY ONE Param => Assume Source Var # The following INFREQUENT form has no target -> NEEDS a currently selected layout field -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Mit Dialog: OFF ; URL: $URL ] +Aus URL einfügen [ Mit Dialog: OFF ; Target: $TargetWebContent ; URL: "someurl" ] +Aus URL einfügen [ Mit Dialog: OFF ; Target: $TargetWebContent ; URL: $SourceURL ] # TODO: MBS must interpret first var as Target when 2 Vars between 'With dialog' and 'cURL options': Target Variable + URL Variable -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: ON ; Target: $TargetWebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $cURL_Options ] +Aus URL einfügen [ Mit Dialog: ON ; Target: $TargetWebContent ; URL: $URL ; cURL options: $cURL_Options ] # EGIT - in cURL options ist es GEMISCHT: MANCHE Vars sind Target Vars, manche QUELL Vars -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: OFF ; Mit Dialog: OFF ; Target: _Home::_gInputText1 ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; " +Aus URL einfügen [ Mit Dialog: OFF ; Target: _Home::_gInputText1 ; URL: "http://www.mrwatson.de" ; cURL options: " --trace $TargetDump --uploadOrWhatever $SourceFile " ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap index 91f117e1..63b82afe 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted by ID - ID 151.txt.snap @@ -161,7 +161,7 @@ Sonst, wenn [] Plugin-Datei installieren PDF einfügen [ Nur Verweis speichern: OFF ] Audio/Video einfügen [ Nur Verweis speichern: OFF ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] + Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] Von Gerät einfügen [ Original ] <Unbekannt> [162] <Unbekannt> [163] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap index 71df779d..8f649480 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in English - ID 218.txt.snap @@ -83,7 +83,7 @@ Text einfügen [ Select ] Von Gerät einfügen [ Original ] Aus Index einfügen [ Auswahl: ON ] Aus zuletzt geöffnetem Satz einfügen [ Auswahl: ON ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] Menüset installieren [ ⚠️ PARAMETER "CustomMenuSet" NOT PARSED ⚠️ ] BeiTimer-Script installieren Plugin-Datei installieren diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap index e176e682..ba7a97df 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/All script steps sorted in Italian - ID 219.txt.snap @@ -96,7 +96,7 @@ Drucker einrichten [ ⚠️ PARAMETER "Restore" NOT PARSED ⚠️ ; Mit Dialog: Einfügen [ Auswahl: ON ; Ohne Stil: OFF ] PDF einfügen [ Nur Verweis speichern: OFF ] Audio/Video einfügen [ Nur Verweis speichern: OFF ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] Von Gerät einfügen [ Original ] Aus Index einfügen [ Auswahl: ON ] Aus zuletzt geöffnetem Satz einfügen [ Auswahl: ON ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap index ba45a987..bdde08c0 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm12 script steps - ID 146.txt.snap @@ -10,5 +10,5 @@ Container verwalten Plugin-Datei installieren PDF einfügen [ Nur Verweis speichern: OFF ] Audio/Video einfügen [ Nur Verweis speichern: OFF ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ] # Command 161 => see NEXT diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap index 5a954d06..314d1df2 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/New functionality reference - ID 197/Script steps - ID 199/fm16 script steps - ID 176.txt.snap @@ -11,7 +11,7 @@ Systemdatum einfügen [ Auswahl: ON ; Target: $UseSetVariable ] Systemuhrzeit einfügen [ Auswahl: ON ; Target: $UseSetVariable ] Benutzernamen einfügen [ Auswahl: ON ; Target: $UseSetVariable ] Datei einfügen [ ⚠️ PARAMETER "Options" NOT PARSED ⚠️ ; Target: $FileContents ; ⚠️ PARAMETER "UniversalPathList" NOT PARSED ⚠️ ] -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $WebContent ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $WebContent ] # FYI: *NOT* Changed: Audio/Video einfügen [ Nur Verweis speichern: OFF ] @@ -26,7 +26,7 @@ Einfügen [ Auswahl: ON ; Ohne Stil: OFF ] Löschen [ Auswahl: ON ] # Changed: cURL Options -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; "-X PUT" ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; cURL options: "-X PUT" ] # New Script step: Regionsmonitor-Script konfigurieren [ ⚠️ PARAMETER "Monitor" NOT PARSED ⚠️ ; Name: $BeaconName ; "### 20230303 @mrwatson-de v1.13 ###" ; ⚠️ PARAMETER "UUID" NOT PARSED ⚠️ ; ⚠️ PARAMETER "Major" NOT PARSED ⚠️ ; ⚠️ PARAMETER "Minor" NOT PARSED ⚠️ ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap index b97888de..b9142a10 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/Example SyntaxColorizing - ID 46/Undefined variables - ID 217.txt.snap @@ -66,10 +66,10 @@ Benutzernamen einfügen [ Auswahl: ON ; Target: $TargetVar ] Von Gerät einfügen [ Vollbild ] # SUCCESS: -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: _Home::_gEmptyField ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: _Home::_gEmptyField ; URL: $ThisIsAVar ] # SUCCESS: -Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $TargetVar ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ] +Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $TargetVar ; URL: $ThisIsAVar ] # SUCCESS: Datei einfügen [ Target: $TargetVar ] diff --git a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap index cc6bc68c..a8501f16 100644 --- a/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap +++ b/tests/snapshots_domain_lossy/scripts_sanitized/fmSyntaxColorizer/fmSyntaxColorizer - ID 64/Modules - ID 203/fmIDE Module - ID 238/fmIDE public api - ID 239/fmIDE - ID 240.txt.snap @@ -2011,15 +2011,15 @@ Schleife (Anfang) [ Flush: Immer ] # @var $fmide_target_temp Wenn [ $with_dialog ] Wenn [ $do_not_automatically_encode_url ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Sonst - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: ON ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: ON ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Ende (wenn) Sonst Wenn [ $do_not_automatically_encode_url ] - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Sonst - Aus URL einfügen [ SSL-Zertifikate verifizieren: OFF ; Auswahl: ON ; Mit Dialog: OFF ; Target: $fmide_target_temp ; ⚠️ PARAMETER "URL" NOT PARSED ⚠️ ; $curl_options ] + Aus URL einfügen [ Auswahl ; Mit Dialog: OFF ; Target: $fmide_target_temp ; URL: $url ; cURL options: $curl_options ] Ende (wenn) Ende (wenn) Wenn [ ZeichenLinks( $target ; 1 ) ≠ "$" ODER