Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/3346/secret #60

Draft
wants to merge 5 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Formsflow-RobotFramework/PageObjects/ApplicationPage.robot
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ ${formname} Automation_Form
${TABLE_ROW_SUBMISSION} 1
${TABLE_COLUMN_SUBMISSION} 1
${CurrentStatus} Reviewed
${name} Nancy smith
${clerk_review} Reviewed
${clerk_return} Returned
*** Keywords ***

Fetch Submission ID
Expand Down
21 changes: 5 additions & 16 deletions Formsflow-RobotFramework/PageObjects/Generic.robot
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,24 @@ Documentation A resource file with reusable keywords and variables.

Library SeleniumLibrary

*** Variables ***
*** variables ***

${url} https://forms-flow-web-qaee.aot-technologies.com/
${enter_username} //*[@id="username"]
${enter_password} //*[@id="password"]
${login} //*[@id="kc-login"]
${designer_user} formsflow-designer
${client_user} formsflow-client
${clerk_user} formsflow-clerk
${approver_user} formsflow-approver
${browser_name} Chrome
${reviewer_user} formsflow-reviewer
${admin_user} john.honai
${test_reviewer} test-reviewer
${password} aot123


*** Keywords ***

Open chrome Browser and goto QAbundle instance

Open Browser ${url} browser=chrome options=add_argument("--headless")
# Open Browser ${url} ${browser_name}
Open Browser ${URL} browser=chrome options=add_argument("--headless")
#Open Browser ${URL} ${BROWSER_NAME}
Maximize Browser Window


Login To QA Instance
sleep 5
[Arguments] ${username}
sleep 5
[Arguments] ${username}
Input Text ${enter_username} ${username}
Input Password ${enter_password} ${password}
Click Button ${login}
Expand Down
Loading
Loading