Here my sample code:
*** Settings ***
Library SeleniumLibrary
*** Variables ***
${URL} https://www.google.com
${BROWSER} chrome
*** Test Cases ***
Browse Google
Open Browser ${URL} ${BROWSER}
Maximize Browser Window
Title Should Be Google
Sleep 3s
Close Browser
When I run this code it open browser but not navigate to website:

Result at console as per below:
Openbrowser
==============================================================================
Browse Google
DevTools listening on ws://127.0.0.1:50331/devtools/browser/bd57fd84-106d-4cd9-af6d-e9d7c1de2266
WARNING: All log messages before absl::InitializeLog() is called are written to STDERR
I0000 00:00:1750070688.179921 17040 voice_transcription.cc:58] Registering VoiceTranscriptionCapability
Browse Google | FAIL |
ReadTimeoutError: HTTPConnectionPool(host='localhost', port=50328): Read timed out. (read timeout=120)
------------------------------------------------------------------------------
Openbrowser | FAIL |
1 test, 0 passed, 1 failed
I tried to update webdriver and browser to latest and check path is correct.