Skip to content

Commit d3441fb

Browse files
committed
fixed metals_color_page.py
1 parent 972641f commit d3441fb

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ Before you begin:
1717
1. inside your IDE
1818
2. using pytest
1919
- 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

tests/jdi_uitests_webtests/main/page_objects/pages/metals_color_page.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
from JDI.web.selenium.elements.complex.dropdown import Dropdown
1010
from JDI.web.selenium.elements.composite.web_page import WebPage
1111
from tests.jdi_uitests_webtests.main.page_objects.sections.summary import Summary
12+
from selenium.webdriver.common.by import By as strategy
1213

1314

1415
class CheckBoxMetalColor(CheckBox):
1516
def is_check_action(self):
1617
driver = JDISettings.get_driver_factory().get_driver()
1718
return (
1819
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(
2021
"checked"
2122
)
2223
is None
@@ -26,7 +27,7 @@ def is_check_action(self):
2627

2728
class CheckListMetalColor(CheckList):
2829
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()
3031

3132

3233
class ComboBoxMetalColor(ComboBox):

0 commit comments

Comments
 (0)