Robot_Framework/RobotSelenium/Mentor/Tests/eBay/BasicSearch.robot
Lukáš Kaňka 2d5d21c8e2 keywords
2023-10-15 21:56:06 +02:00

30 lines
686 B
Plaintext

*** Settings ***
Documentation Basic Search Funcianality
Library SeleniumLibrary
*** Variables ***
${browser} chrome
${url} https://www.ebay.com/
*** Test Cases ***
Verify basic search functionality foe eBay
[Documentation] This test case verifins the basic search
[Tags] Functional
Start test
Verify Search Results
Finnish TestCase
*** Keywords ***
Start test
open browser ${url} ${browser}
maximize browser window
Verify Search Results
input text //*[@id="gh-ac"] mobile
#click button xpath://*[@id="gh-btn"]
press keys xpath://*[@id="gh-btn"] RETURN
page should contain výsledků mobile
Finnish TestCase
close browser