eBay search

This commit is contained in:
Lukáš Kaňka
2023-10-15 05:16:50 +02:00
parent bb725fcd4c
commit fc7d35d64e
5 changed files with 36 additions and 16 deletions

View File

@ -0,0 +1,20 @@
*** 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
open browser ${url} ${browser}
input text //*[@id="gh-ac"] mobile
press key //*[@id="gh-btn"] [Return]
# ověříme že se zobrzí ve filtru mobily
page should contain
*** Keywords ***