Skip to content

Commit 0319076

Browse files
committed
Update locators.py
indent problem fixed
1 parent f1eeeb3 commit 0319076

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

locators.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
# for maintainability we can seperate web objects by page name
44

55
class MainPageLocatars(object):
6-
LOGO = (By.ID, 'nav-logo')
6+
LOGO = (By.ID, 'nav-logo')
77
ACCOUNT = (By.ID, 'nav-link-yourAccount')
8-
SIGNUP = (By.CSS_SELECTOR, '#nav-flyout-ya-newCust > a')
9-
LOGIN = (By.CSS_SELECTOR, '#nav-flyout-ya-signin > a')
8+
SIGNUP = (By.CSS_SELECTOR, '#nav-flyout-ya-newCust > a')
9+
LOGIN = (By.CSS_SELECTOR, '#nav-flyout-ya-signin > a')
1010
SEARCH = (By.ID, 'twotabsearchtextbox')
11-
SEARCH_LIST = (By.ID, 's-results-list-atf')
11+
SEARCH_LIST = (By.ID, 's-results-list-atf')
1212

1313
class LoginPageLocatars(object):
14-
EMAIL = (By.ID, 'ap_email')
15-
PASSWORD = (By.ID, 'ap_password')
16-
SUBMIT = (By.ID, 'signInSubmit-input')
14+
EMAIL = (By.ID, 'ap_email')
15+
PASSWORD = (By.ID, 'ap_password')
16+
SUBMIT = (By.ID, 'signInSubmit-input')
1717
ERROR_MESSAGE = (By.ID, 'message_error')

0 commit comments

Comments
 (0)