diff --git a/Resources/Common.robot b/Resources/Common.robot index 6c08f4a..3a65f1a 100644 --- a/Resources/Common.robot +++ b/Resources/Common.robot @@ -3,14 +3,14 @@ Library SeleniumLibrary *** Variables *** ${BROWSER} chrome -${URL} https://automationplayground.com/crm/ +${URL} https://automationplayground.com/crm/ *** Keywords *** Begin Web Test - # Crée un objet ChromeOptions côté Python (comme pour end-to-end & amazon) + # Crée un vrai ChromeOptions Python (comme pour end-to-end & amazon) ${options}= Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys, selenium.webdriver - # ⚠️ Tous les arguments sont positionnels, PAS des "nom=valeur" + # ⚠️ Tous les arguments sont positionnels (pas de name=value) Call Method ${options} add_argument --headless=new Call Method ${options} add_argument --disable-dev-shm-usage Call Method ${options} add_argument --no-sandbox