Version history
We follow Semantic Versions.
0.8.6 (04.03.25)
Replace isort, black, flake with Ruff
0.8.5 (10.02.25)
Add ability to get related xpath locators by index for
XPathLocator
0.8.4 (30.01.25)
Add escaping single and double quotes in the:
ElementWithTextLocator
,InputInLabelLocator
,InputByLabelLocator
,TextAreaByLabelLocator
.Add escaping single and double quotes in the
get_item_by_text
method of theListComponent
0.8.3 (20.12.24)
Rename
__parameters__
inListComponent
to__generic__parameters
to avoid problems with Python build-in functions
0.8.2 (19.12.24)
Add ability to specify
TypeAlias
as_item class
and useListComponent
as a parameterized type
0.8.1 (25.11.24)
Improve getting
item class
from firstListComponent
generic variable. There were several cases where this didn’t work correctly (for multiple generic variables and inheritance). Examples of such cases are presented in this PR.
Warning: The item_class
class attribute was removed.
0.8.0 (05.07.24)
Add ability to not specify
item_class
inListComponent
. Instead, it will be automatically filled with value passed inGeneric[ListItemType]
.
Warning: The item_class
specification is still available, but it is
deprecated and will be removed soon.
0.7.5
Remove redundant call of
scroll_to
inPomcornElement.click()
. This is redundant, as webdriver by default scrolls to element before click (docs).
0.7.4
Improve
Page.click_on_page()
method to click the page coordinates instead of offset relative to current mouse position
0.7.3
Add ability to not specify
app_root
inPage.open_from_url()
as inPage.open()
0.7.2
Improve
Page.click_on_page()
method to click on <html> tagImprove
Page.open_from_url()
to support kwargsFix
\
related problems inPage._get_full_relative_url()
0.7.1
Add ability to Element to specify simple and relative locators using the locator or relative_locator arguments, as in Component.init_element.
Fix some possible xpath errors depending on empty locators queries and brackets.
0.7.0
Update diagrams with mermaid
Add invocation inv docs.serve to run docs on localhost
Add auto-scroll to element before click
Add page class name to
PageDidNotLoadedError
Add method
contains()
toXPathLocator
for search by contained text
Backwards incompatible changes in 0.7.0
Remove simple
Component
classRename
ComponentWithBaseLocator
toComponent
Rename
Element
class toPomcornElement
Add descriptor
Element
to simplify adding element-attributes to Pages and Components
0.6.0
Backwards incompatible changes in 0.6.0
Updating the
Page.click_on_page
method: now it clicks on (1, 1) page coordinates, because clicking on the html tag was done in the center of the page, which led to unexpected situationsInputByLabelLocator
is split intoInputByLabelLocator
(for non-nested case) andInputInLabelLocator
(for nested case)
0.5.0
Add ability to specify
base_locator
forComponentWithBaseLocator
as a class attribute, so as not to override __init__ (Issue: #34)Add ability to specify
base_item_locator
viaitem_locator
andrelative_item_locator
attributes forListComponent
to avoid overridingproperty
each time and simplify creation of nested items locators
0.4.0
Add
|
(or) operator for XPathLocatorsAdd
Page.click_on_page
methodAdd recommendation for use keyword when specifying the
locator
argument ininit_element
andinit_elements
methods whenever possible to be consistent with the method of the same name inComponentWithBaseLocator
Improve
WebView.scroll_to()
0.3.1
Fix type hints after update Selenium
0.3.0
Backwards incompatible changes in 0.3.0
Update
InputByLabelLocator
from a single-level to a nested implementation
0.2.0
Backwards incompatible changes in 0.2.0
Replace
is_loaded
property tocheck_page_is_loaded
method
0.1.0
Init release