File tree 2 files changed +5
-3
lines changed
tests/jdi_uitests_webtests/main/page_objects/pages
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,5 @@ Before you begin:
17
17
1 . inside your IDE
18
18
2 . using pytest
19
19
- activate your virtual environment by running ` source venv/bin/activate ` on MacOs or ` venv\Scripts\activate ` on Windows
20
- - run ` pytest ` in the terminal
20
+ - run ` pytest ` in the terminal (eg. ` pytest ./tests/jdi_uitests_webtests/test/common/ ` - to run all tests in the specified directory)
21
+ - be sure that you are in a project root directory when running the command
Original file line number Diff line number Diff line change 9
9
from JDI .web .selenium .elements .complex .dropdown import Dropdown
10
10
from JDI .web .selenium .elements .composite .web_page import WebPage
11
11
from tests .jdi_uitests_webtests .main .page_objects .sections .summary import Summary
12
+ from selenium .webdriver .common .by import By as strategy
12
13
13
14
14
15
class CheckBoxMetalColor (CheckBox ):
15
16
def is_check_action (self ):
16
17
driver = JDISettings .get_driver_factory ().get_driver ()
17
18
return (
18
19
False
19
- if driver .find_element_by_xpath ( "//*[@id='elements-checklist']//*[*[text()='Water']]/input" ).get_attribute (
20
+ if driver .find_element ( strategy . XPATH , "//*[@id='elements-checklist']//*[*[text()='Water']]/input" ).get_attribute (
20
21
"checked"
21
22
)
22
23
is None
@@ -26,7 +27,7 @@ def is_check_action(self):
26
27
27
28
class CheckListMetalColor (CheckList ):
28
29
def is_element_selected (self , el ):
29
- return el .find_element_by_xpath ( "../input" ).is_selected ()
30
+ return el .find_element ( strategy . XPATH , "../input" ).is_selected ()
30
31
31
32
32
33
class ComboBoxMetalColor (ComboBox ):
You can’t perform that action at this time.
0 commit comments