21 lines
628 B
Plaintext
21 lines
628 B
Plaintext
*** Settings ***
|
|
Library Browser
|
|
Library FakerLibrary locale=nl_NL
|
|
|
|
*** Variables ***
|
|
${EMAIL} jejim33876@barodis.com
|
|
|
|
*** Keywords ***
|
|
Open Klant Tab
|
|
[Documentation] Opent het Tabblad Klant
|
|
Click id=klanten
|
|
|
|
Klant Toevoegen
|
|
[Documentation] Voegt een nieuwe klant toe met behulp van random data
|
|
${VOORNAAM}= FakerLibrary.Name Nonbinary
|
|
${ACHTERNAAM}= FakerLibrary.Last Name
|
|
Click id=klantToevoegen
|
|
Type Text id=input-voornaam ${VOORNAAM}
|
|
Type Text id=input-achternaam ${ACHTERNAAM}
|
|
Type Text id=input-email ${EMAIL}
|
|
Click id=opslaanKlant |