From ee1d882a5129c9983be5a6e2820084986a0dda54 Mon Sep 17 00:00:00 2001 From: Jochen Delabie Date: Fri, 17 Jul 2026 08:27:30 +0200 Subject: [PATCH] Fix stitched note next to the Enable Tunnel checkbox The freestyle Build Environment wrapper rendered a note inline right after the 'Enable TestingBot Tunnel?' checkbox label (inside an f:block), so the text ran straight into the label with no spacing, and it duplicated the ? help icon already on the field. Remove the inline note (and a pointless f:optionalBlock wrapper) and fold the hint into help-useTunnel.html instead. The checkbox still binds to useTunnel and shows its saved state. --- .../testingbot/TestingBotBuildWrapper/config.jelly | 11 +++-------- .../TestingBotBuildWrapper/help-useTunnel.html | 1 + 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/main/resources/testingbot/TestingBotBuildWrapper/config.jelly b/src/main/resources/testingbot/TestingBotBuildWrapper/config.jelly index 8b34255..c61a8bd 100644 --- a/src/main/resources/testingbot/TestingBotBuildWrapper/config.jelly +++ b/src/main/resources/testingbot/TestingBotBuildWrapper/config.jelly @@ -3,13 +3,8 @@ - - - - - Note: Skip this if you are using TestingBot Tunnel in your code. - - - + + + diff --git a/src/main/resources/testingbot/TestingBotBuildWrapper/help-useTunnel.html b/src/main/resources/testingbot/TestingBotBuildWrapper/help-useTunnel.html index 02be004..65daf0b 100644 --- a/src/main/resources/testingbot/TestingBotBuildWrapper/help-useTunnel.html +++ b/src/main/resources/testingbot/TestingBotBuildWrapper/help-useTunnel.html @@ -1,3 +1,4 @@
Whether a TestingBot Tunnel should be started before each test and destroyed after each test. With TestingBot Tunnel you can run Selenium tests on your local/firewalled apps. + Skip this if you already start the TestingBot Tunnel yourself in your test code.
\ No newline at end of file