From 3e08c3574034f530e26156ff1704aba527d13651 Mon Sep 17 00:00:00 2001 From: Benjamin Forehand Jr Date: Tue, 24 Apr 2018 11:07:11 -0400 Subject: [PATCH] Updated strings and descriptions. --- test/integration/pages/desktop/base.py | 1 + test/integration/pages/desktop/download.py | 1 + test/integration/pages/desktop/home.py | 2 +- test/integration/pages/desktop/progress.py | 1 + test/integration/pages/desktop/share.py | 1 + 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/test/integration/pages/desktop/base.py b/test/integration/pages/desktop/base.py index bfa6b0f0..b9b75c04 100644 --- a/test/integration/pages/desktop/base.py +++ b/test/integration/pages/desktop/base.py @@ -3,6 +3,7 @@ from selenium.webdriver.common.by import By class Base(Page): + """Base object model.""" _url = '{base_url}' _send_logo_locator = (By.CLASS_NAME, 'logo') diff --git a/test/integration/pages/desktop/download.py b/test/integration/pages/desktop/download.py index 16081765..59134d6d 100644 --- a/test/integration/pages/desktop/download.py +++ b/test/integration/pages/desktop/download.py @@ -4,6 +4,7 @@ from pages.desktop.base import Base class Download(Base): + """Download page object model.""" _download_button_locator = (By.CLASS_NAME, 'btn--download') diff --git a/test/integration/pages/desktop/home.py b/test/integration/pages/desktop/home.py index 36bf50bb..a5b0c6cf 100644 --- a/test/integration/pages/desktop/home.py +++ b/test/integration/pages/desktop/home.py @@ -4,7 +4,7 @@ from pages.desktop.base import Base class Home(Base): - """Addons Home page""" + """Firefox Send Home page object model.""" _upload_area_locator = (By.ID, 'file-upload') _upload_button_locator = (By.CLASS_NAME, 'btn--file') diff --git a/test/integration/pages/desktop/progress.py b/test/integration/pages/desktop/progress.py index b837e708..f7821820 100644 --- a/test/integration/pages/desktop/progress.py +++ b/test/integration/pages/desktop/progress.py @@ -4,6 +4,7 @@ from pages.desktop.base import Base class Progress(Base): + """Progress page object model.""" _cancel_button = (By.ID, 'cancel-upload') _progress_icon_locator = (By.CLASS_NAME, 'progress__bar') diff --git a/test/integration/pages/desktop/share.py b/test/integration/pages/desktop/share.py index 5110e0a3..a8197e86 100644 --- a/test/integration/pages/desktop/share.py +++ b/test/integration/pages/desktop/share.py @@ -4,6 +4,7 @@ from pages.desktop.base import Base class Share(Base): + """SHare page object model.""" _share_page_locator = (By.CLASS_NAME, 'sharePage') _share_url_locator = (By.ID, 'fileUrl')