diff --git a/docs/api/testapi.html b/docs/api/testapi.html index 1638774773b..5d7445c4f4d 100644 --- a/docs/api/testapi.html +++ b/docs/api/testapi.html @@ -2062,7 +2062,7 @@
backend_get_wait_still diff --git a/docs/current.pdf b/docs/current.pdf index 84bbc09c00b..ab84a3b3b81 100644 Binary files a/docs/current.pdf and b/docs/current.pdf differ diff --git a/docs/index.html b/docs/index.html index aac07f01f72..2ca0ab0aa91 100644 --- a/docs/index.html +++ b/docs/index.html @@ -6460,11 +6460,11 @@

Test Case Examples

assert_screen('openqa-search-results') # import further Perl-based libraries (besides `testapi`) - perl.require("x11utils") + perl.require('x11utils') # use imported Perl-based libraries; call Perl function that would be called via "named arguments" in Perl # note: In Perl the call would have been: x11_start_program('flatpak run com.obsproject.Studio', target_match => 'obsproject-wizard') - perl.x11utils.x11_start_program("flatpak run com.obsproject.Studio", "target_match", "obsproject-wizard") + perl.x11utils.x11_start_program('flatpak run com.obsproject.Studio', 'target_match', 'obsproject-wizard') def switch_to_root_console(): send_key('ctrl-alt-f3') @@ -9476,12 +9476,10 @@

Configure firewalld

# add new service "isotovideo" with ports covering 50 worker slots as explained in debugging steps above
-firewall-cmd --new-service isotovideo
-for i in {1..50}; do firewall-cmd --service=isotovideo --add-port=$((i * 10 + 20003))/tcp ; done
-# allow the service in your zone (public in this example) right now
-firewall-cmd --zone=public --add-service=isotovideo
-# ensure the settings to be effective after firewall or host restarts
-firewall-cmd --runtime-to-permanent
+firewall-cmd --permanent --new-service isotovideo +for i in {1..50}; do firewall-cmd --permanent --service=isotovideo --add-port=$((i * 10 + 20003))/tcp ; done +# allow the service in your zone (trusted in this example) right now +firewall-cmd --permanent --zone=trusted --add-service=isotovideo
@@ -12451,7 +12449,7 @@

Developing tests with container