From 18ceb0ae8990b4d003b49b7508980e861916e9f5 Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 21 Jun 2020 02:23:57 +0200 Subject: [PATCH] feat: added m-test13 + updated .drone.yml --- .drone.yml | 2 ++ m-test13.robot | 59 +++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 60 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 27326b4..6222d05 100644 --- a/.drone.yml +++ b/.drone.yml @@ -823,6 +823,7 @@ steps: - failure depends_on: - reveal-env + - m-test09 - name: m-test14 pull: if-not-exists @@ -1083,6 +1084,7 @@ steps: - m-test10 - m-test11 - m-test12 + - m-test13 - name: copy-cache pull: if-not-exists diff --git a/m-test13.robot b/m-test13.robot index 89bc064..ee4c8c7 100644 --- a/m-test13.robot +++ b/m-test13.robot @@ -6,12 +6,43 @@ ${URL} https://git.dotya.ml/ ${BROWSER} chrome ${DELAY} 0.2 +${BURGER_MENU} //*[@id="navbar-expand-toggle"] +${BURGER_MENU_SIGN_IN} //*[@id="navbar"]/div[2]/a[2] +${BURGER_AFTER_LOGIN} //*[@id="navbar-expand-toggle"] +${BURGER_AFTER_LOGIN_PULL_REQUESTS} //*[@id="navbar"]/a[3] +${USERNAME_FIELD} //*[@id="user_name"] +${PASSWD_FIELD} //*[@id="password"] +${SIGN_IN_BUTTON} //form/div[4]/button[1] + *** Keywords *** Screenshot page Capture Page Screenshot +Sign In page + Location Should Be https://git.dotya.ml/user/login?redirect_to=%2f + +Login page title + Title Should Be Sign In - dotya.ml Gitea Service + +Input Username + [Arguments] ${USERNAME_FIELD} ${USERNAME} + Input Text ${USERNAME_FIELD} ${USERNAME} + +Input Password + [Arguments] ${PASSWD_FIELD} ${PASSWORD} + Input Text ${PASSWD_FIELD} ${PASSWORD} + +Login success + Title Should Be dat_test_usr - Dashboard - dotya.ml Gitea Service + +Dashboard page address + Location Should Be https://git.dotya.ml/ + +Pull Requests page + Location Should Be https://git.dotya.ml/pulls + *** Test Cases *** -open homepage (mobile) +show Pull Requests page (mobile) # based on Pixel 2 XL mobile browser declared resolution ${devicemetrics}= Create Dictionary width=${411} height=${823} pixelRatio=${2.0} userAgent=Mozilla/5.0 (Linux; Mobile; Android 10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36 ${mobileemulation}= Create Dictionary deviceMetrics=${devicemetrics} @@ -27,5 +58,31 @@ open homepage (mobile) Screenshot page Log Location + Click Element ${BURGER_MENU} + Sleep ${DELAY} + Screenshot page + Click Element ${BURGER_MENU_SIGN_IN} + Screenshot page + Log Location + Sign In page + + Login page title + Input Username ${USERNAME_FIELD} dat_test_usr + Input Password ${PASSWD_FIELD} D@t_p@ssw000rd987. + Screenshot page + + Click Element ${SIGN_IN_BUTTON} + Screenshot page + Log Location + Login success + Dashboard page address + + Click Element ${BURGER_AFTER_LOGIN} + Screenshot page + Click Element ${BURGER_AFTER_LOGIN_PULL_REQUESTS} + Screenshot page + Log Location + Pull Requests page + Post-conditions Close Browser