From 65a4559bb31a30807393877845c588310abfdff8 Mon Sep 17 00:00:00 2001 From: "Alejandro E. Rendon" Date: Mon, 17 Jun 2024 10:20:41 -0500 Subject: [PATCH] Add test for contact form render --- Tests/chrome/agenciaclickone/IndexView.robot | 26 -------------------- 1 file changed, 26 deletions(-) delete mode 100644 Tests/chrome/agenciaclickone/IndexView.robot diff --git a/Tests/chrome/agenciaclickone/IndexView.robot b/Tests/chrome/agenciaclickone/IndexView.robot deleted file mode 100644 index 95c4bd1..0000000 --- a/Tests/chrome/agenciaclickone/IndexView.robot +++ /dev/null @@ -1,26 +0,0 @@ -*** Settings *** -Documentation Contact Form -Library SeleniumLibrary -Library Process - -*** Variables *** -${BROWSER} chrome - -*** Test Cases *** -Verify contact form render - [Documentation] This test case verifies the contact form - [Tags] Functional - - ${chrome_options}= Create Chrome Options - Open Browser https://fracturasyfracturas.com.co/ ${BROWSER} options=${chrome_options} - Wait Until Page Contains Capta nuevas oportunidades comerciales en internet. 30 - [Teardown] Close Browser - -*** Keywords *** -Create Chrome Options - ${options}= Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys, selenium.webdriver - Call Method ${options} add_argument --headless - Call Method ${options} add_argument --disable-gpu - Call Method ${options} add_argument --no-sandbox - Call Method ${options} add_argument --disable-dev-shm-usage - RETURN ${options}