123456789101112131415161718192021222324 |
- *** Settings ***
- Library SeleniumLibrary
- Library XML
- *** Variables ***
- ${LOGIN_BUTTON_LOCATOR}= xpath=//*[@id="root"]/div/div/div/div[1]/div[1]/a[1]
- ${CREATE_ACCOUNT_BUTTON_LOCATOR}= xpath=//*[@id="root"]/div/div/div/div[1]/div[1]/a[2]
- *** Keywords ***
- Valider l'affichage de la page "Accueil" - non connecté
- ${page_url} = Get Location
- Should Be Equal As Strings ${page_url} https://practice.expandtesting.com/notes/app/
- Wait Until Element Is Visible ${LOGIN_BUTTON_LOCATOR}
- #Element Should Exist ${LOGIN_BUTTON_LOCATOR}
- #Element Should Exist ${CREATE_ACCOUNT_BUTTON_LOCATOR}
- Cliquer sur "Login"
- Click Element ${LOGIN_BUTTON_LOCATOR}
- Cliquer sur "Create an account"
- Click Element ${CREATE_ACCOUNT_BUTTON_LOCATOR}
-
|