pomcorn 0.7.4__py3-none-any.whl → 0.7.5__py3-none-any.whl
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.
pomcorn/element.py
CHANGED
|
@@ -285,7 +285,6 @@ class PomcornElement(Generic[locators.TLocator]):
|
|
|
285
285
|
def click(
|
|
286
286
|
self,
|
|
287
287
|
only_visible: bool = True,
|
|
288
|
-
scroll_to: bool = True,
|
|
289
288
|
wait_until_clickable: bool = True,
|
|
290
289
|
):
|
|
291
290
|
"""Click on element.
|
|
@@ -293,13 +292,10 @@ class PomcornElement(Generic[locators.TLocator]):
|
|
|
293
292
|
Args:
|
|
294
293
|
only_visible: Flag for viewing visible elements. If this is `True`
|
|
295
294
|
(default), then this method will only get visible elements.
|
|
296
|
-
scroll_to: Whether to scroll to element before clicking or not.
|
|
297
295
|
wait_until_clickable: Wait until the element is clickable before
|
|
298
296
|
clicking, or not (default `True`).
|
|
299
297
|
|
|
300
298
|
"""
|
|
301
|
-
if scroll_to:
|
|
302
|
-
self.scroll_to(only_visible=only_visible)
|
|
303
299
|
if wait_until_clickable:
|
|
304
300
|
self.wait_until_clickable()
|
|
305
301
|
self.get_element(only_visible=only_visible).click()
|
|
@@ -2,7 +2,7 @@ pomcorn/__init__.py,sha256=V8v_V3wgKbao1KAQkcVTMnpGwyslw0nHfuTp-DwWTXg,318
|
|
|
2
2
|
pomcorn/component.py,sha256=7nRt-A20Psm0Xl7Rm6tRUK8yOhIh4t2Bdm1fwmJ0MjA,8385
|
|
3
3
|
pomcorn/descriptors/__init__.py,sha256=5q_d5GtcaFlIIyHdsUnE9UNbz3g40qJCHKNaWGvcC6s,72
|
|
4
4
|
pomcorn/descriptors/element.py,sha256=4g_4ay5f00AXzCT4xHN1i7mTrlsECoUHh1Ph_TFPBDs,4502
|
|
5
|
-
pomcorn/element.py,sha256=
|
|
5
|
+
pomcorn/element.py,sha256=6VLLSPlc7961qa4rRXdno7cEAAeY8GEP2d4wtM5R9a0,12216
|
|
6
6
|
pomcorn/exceptions.py,sha256=8ZOmrybDwvEVZRLQzyozjRNhJvSLbablaFwGFUVMhrU,1131
|
|
7
7
|
pomcorn/locators/__init__.py,sha256=hNSlfmz3y-LI4PXF5VIwX8J5WSalyE2wmzuYc6kNxMA,708
|
|
8
8
|
pomcorn/locators/base_locators.py,sha256=B4SDSKi5j7kqwbxllnMHU9BKBJzn_dzNRphPQ2hTuss,7065
|
|
@@ -11,7 +11,7 @@ pomcorn/page.py,sha256=wuLoGUn1n0e7wSXLGYyUVnoPlz_gMfT8Jtg6yA09IeY,5755
|
|
|
11
11
|
pomcorn/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
pomcorn/waits_conditions.py,sha256=E8sLfBvIV2EO91Mm5KyKXB5IGEB9gUWza3XPE4_aCQE,3528
|
|
13
13
|
pomcorn/web_view.py,sha256=PlwEVgdOwFZXJY2WuUT2C2wyK1xOBJne5-A_FOuwsQI,14209
|
|
14
|
-
pomcorn-0.7.
|
|
15
|
-
pomcorn-0.7.
|
|
16
|
-
pomcorn-0.7.
|
|
17
|
-
pomcorn-0.7.
|
|
14
|
+
pomcorn-0.7.5.dist-info/LICENSE,sha256=1vmhQNp1dDH8ksJ199LuG4oKz5D4ZvNccPcFckiG2S4,1091
|
|
15
|
+
pomcorn-0.7.5.dist-info/METADATA,sha256=Z4CQLFxxt1K15BVGS-HP7cjv0VApHDmdfH7gk0Zmhps,5949
|
|
16
|
+
pomcorn-0.7.5.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
17
|
+
pomcorn-0.7.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|