pomcorn 0.9.0__tar.gz → 0.9.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pomcorn might be problematic. Click here for more details.

@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: pomcorn
3
- Version: 0.9.0
3
+ Version: 0.9.2
4
4
  Summary: Base implementation of Page Object Model
5
- Home-page: https://pypi.org/project/pomcorn/
6
5
  License: MIT
7
6
  Keywords: python,selenium,webdriver,autotests,page object model,page object pattern,page object,pom,parsing,browser
8
7
  Author: Saritasa
@@ -22,6 +21,7 @@ Classifier: Programming Language :: Python :: 3.13
22
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
22
  Requires-Dist: selenium (>=4.12)
24
23
  Project-URL: Documentation, http://pomcorn.rtfd.io/
24
+ Project-URL: Homepage, https://pypi.org/project/pomcorn/
25
25
  Project-URL: Repository, https://github.com/saritasa-nest/pomcorn/
26
26
  Description-Content-Type: text/markdown
27
27
 
@@ -172,13 +172,12 @@ class PomcornElement(Generic[locators.TLocator]):
172
172
  counted.
173
173
 
174
174
  """
175
- self.get_element(only_visible=only_visible)
175
+ cmd_ctrl = Keys.CONTROL
176
+ if sys.platform.lower() == "darwin":
177
+ cmd_ctrl = Keys.COMMAND
176
178
 
177
- if sys.platform == "darwin":
178
- self.send_keys(Keys.COMMAND + "a")
179
- else:
180
- self.send_keys(Keys.CONTROL + "a")
181
- self.send_keys(Keys.BACK_SPACE)
179
+ self.send_keys(cmd_ctrl + "a", only_visible=only_visible)
180
+ self.send_keys(Keys.BACK_SPACE, only_visible=only_visible)
182
181
 
183
182
  def send_keys(self, keys: str, only_visible: bool = True):
184
183
  """Send keys to element.
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pomcorn"
3
- version = "0.9.0"
3
+ version = "0.9.2"
4
4
  description = "Base implementation of Page Object Model"
5
5
  authors = [
6
6
  "Saritasa <pypi@saritasa.com>",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes