Skip to content

Commit

Permalink
Merge pull request #371 from dimagi/QA-7156-script-fix-update-bs-app-…
Browse files Browse the repository at this point in the history
…url-for-the-month

QA-7156 updated locators, steps for export data page
  • Loading branch information
kbo001 authored Oct 23, 2024
2 parents 6fd02cd + 035cb52 commit af081d3
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 91 deletions.
8 changes: 4 additions & 4 deletions ExportTests/testCases/test_02_integration_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def test_case_25_excel_dashboard_integration_form(driver, settings):
home = HomePage(driver, settings)
home.data_menu()
export = ExportDataPage(driver)
export.excel_dashboard_integration_form()
link = export.check_feed_link()
form = export.excel_dashboard_integration_form()
link = export.check_feed_link(form)
export.verify_duplicate_data_in_dashboard(link, settings['login_username'], settings['login_password'])


Expand All @@ -52,8 +52,8 @@ def test_case_26_excel_dashboard_integration_case(driver, settings):
home = HomePage(driver, settings)
home.data_menu()
export = ExportDataPage(driver)
export.excel_dashboard_integration_case()
link = export.check_feed_link()
case = export.excel_dashboard_integration_case()
link = export.check_feed_link(case)
export.verify_duplicate_data_in_dashboard(link, settings['login_username'], settings['login_password'])

@pytest.mark.data
Expand Down
Loading

0 comments on commit af081d3

Please sign in to comment.