Robot_Framework/RobotSelenium/Mentor/Tests/eBay/BasicSearch.robot

21 lines
560 B
Plaintext
Raw Normal View History

2023-10-15 03:16:50 +00:00
*** 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
2023-10-15 04:01:31 +00:00
open browser ${url} ${browser}
input text //*[@id="gh-ac"] mobile
click button xpath://*[@id="gh-btn"]
# ověříme že se na stránce zobrzí ve filtru mobily
page should contain výsledků mobile
close browser
2023-10-15 03:16:50 +00:00
*** Keywords ***