Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/SeleniumLibrary/keywords/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -1293,14 +1293,13 @@ def get_css_property_value(self, locator: Locator, css_property: str) -> str:
"""
return self.find_element(locator).value_of_css_property(css_property)


@keyword("Drag And Drop Across Frames")
def drag_and_drop_across_frames(
self,
locator: Locator,
target: Locator,
target_frame: Locator,
source_frame: Locator | None = None,
self,
locator: Locator,
target: Locator,
target_frame: Locator,
source_frame: Locator | None = None,
) -> None:
"""
Drags an element and drops it onto a target element across frame boundaries.
Expand Down
Loading