How to use move_by method of Selenium.WebDriver.PointerActions Package

Best Selenium code snippet using Selenium.WebDriver.PointerActions.move_by

pointer_actions.rb

Source:pointer_actions.rb Github

copy

Full Screen

...112 # match.113 #114 # @example Move the mouse to a certain offset from its current position115 #116 # driver.action.move_by(100, 100).perform117 #118 # @param [Integer] right_by horizontal offset. A negative value means moving the mouse left.119 # @param [Integer] down_by vertical offset. A negative value means moving the mouse up.120 # @param [Symbol || String] device optional name of the PointerInput device to move121 # @return [W3CActionBuilder] A self reference.122 # @raise [MoveTargetOutOfBoundsError] if the provided offset is outside the document's boundaries.123 #124 def move_by(right_by, down_by, device: nil)125 pointer = get_pointer(device)126 pointer.create_pointer_move(duration: default_move_duration,127 x: Integer(right_by),128 y: Integer(down_by),129 origin: Interactions::PointerMove::POINTER)130 tick(pointer)131 self132 end133 #134 # Moves the mouse to a given location in the viewport.135 # If the coordinates provided are outside the viewport (the mouse will136 # end up outside the browser window) then the viewport is scrolled to137 # match.138 #139 # @example Move the mouse to a certain position in the viewport140 #141 # driver.action.move_to_location(100, 100).perform142 #143 # @param [Integer] x horizontal position. Equivalent to a css 'left' value.144 # @param [Integer] y vertical position. Equivalent to a css 'top' value.145 # @param [Symbol || String] device optional name of the PointerInput device to move146 # @return [W3CActionBuilder] A self reference.147 # @raise [MoveTargetOutOfBoundsError] if the provided x or y value is outside the document's boundaries.148 #149 def move_to_location(x, y, device: nil)150 pointer = get_pointer(device)151 pointer.create_pointer_move(duration: default_move_duration,152 x: Integer(x),153 y: Integer(y),154 origin: Interactions::PointerMove::VIEWPORT)155 tick(pointer)156 self157 end158 #159 # Clicks (without releasing) in the middle of the given element. This is160 # equivalent to:161 #162 # driver.action.move_to(element).click_and_hold163 #164 # @example Clicking and holding on some element165 #166 # el = driver.find_element(id: "some_id")167 # driver.action.click_and_hold(el).perform168 #169 # @param [Selenium::WebDriver::Element] element the element to move to and click.170 # @param [Symbol || String] device optional name of the PointerInput device to click with171 # @return [W3CActionBuilder] A self reference.172 #173 def click_and_hold(element = nil, device: nil)174 move_to(element, device: device) if element175 pointer_down(:left, device: device)176 self177 end178 #179 # Releases the depressed left mouse button at the current mouse location.180 #181 # @example Releasing an element after clicking and holding it182 #183 # el = driver.find_element(id: "some_id")184 # driver.action.click_and_hold(el).release.perform185 #186 # @param [Symbol || String] device optional name of the PointerInput device with the button187 # that will be released188 # @return [W3CActionBuilder] A self reference.189 #190 def release(device: nil)191 pointer_up(:left, device: device)192 self193 end194 #195 # Clicks in the middle of the given element. Equivalent to:196 #197 # driver.action.move_to(element).click198 #199 # When no element is passed, the current mouse position will be clicked.200 #201 # @example Clicking on an element202 #203 # el = driver.find_element(id: "some_id")204 # driver.action.click(el).perform205 #206 # @example Clicking at the current mouse position207 #208 # driver.action.click.perform209 #210 # @param [Selenium::WebDriver::Element] element An optional element to click.211 # @param [Symbol || String] device optional name of the PointerInput device with the button212 # that will be clicked213 # @return [W3CActionBuilder] A self reference.214 #215 def click(element = nil, device: nil)216 move_to(element, device: device) if element217 pointer_down(:left, device: device)218 pointer_up(:left, device: device)219 self220 end221 #222 # Performs a double-click at middle of the given element. Equivalent to:223 #224 # driver.action.move_to(element).double_click225 #226 # When no element is passed, the current mouse position will be double-clicked.227 #228 # @example Double-click an element229 #230 # el = driver.find_element(id: "some_id")231 # driver.action.double_click(el).perform232 #233 # @example Double-clicking at the current mouse position234 #235 # driver.action.double_click.perform236 #237 # @param [Selenium::WebDriver::Element] element An optional element to move to.238 # @param [Symbol || String] device optional name of the PointerInput device with the button239 # that will be double-clicked240 # @return [W3CActionBuilder] A self reference.241 #242 def double_click(element = nil, device: nil)243 move_to(element, device: device) if element244 click(device: device)245 click(device: device)246 self247 end248 #249 # Performs a context-click at middle of the given element. First performs250 # a move_to to the location of the element.251 #252 # When no element is passed, the current mouse position will be context-clicked.253 #254 # @example Context-click at middle of given element255 #256 # el = driver.find_element(id: "some_id")257 # driver.action.context_click(el).perform258 #259 # @example Context-clicking at the current mouse position260 #261 # driver.action.context_click.perform262 #263 # @param [Selenium::WebDriver::Element] element An element to context click.264 # @param [Symbol || String] device optional name of the PointerInput device with the button265 # that will be context-clicked266 # @return [W3CActionBuilder] A self reference.267 #268 def context_click(element = nil, device: nil)269 move_to(element, device: device) if element270 pointer_down(:right, device: device)271 pointer_up(:right, device: device)272 self273 end274 #275 # A convenience method that performs click-and-hold at the location of the276 # source element, moves to the location of the target element, then277 # releases the mouse.278 #279 # @example Drag and drop one element onto another280 #281 # el1 = driver.find_element(id: "some_id1")282 # el2 = driver.find_element(id: "some_id2")283 # driver.action.drag_and_drop(el1, el2).perform284 #285 # @param [Selenium::WebDriver::Element] source element to emulate button down at.286 # @param [Selenium::WebDriver::Element] target element to move to and release the287 # mouse at.288 # @param [Symbol || String] device optional name of the PointerInput device with the button289 # that will perform the drag and drop290 # @return [W3CActionBuilder] A self reference.291 #292 def drag_and_drop(source, target, device: nil)293 click_and_hold(source, device: device)294 move_to(target, device: device)295 release(device: device)296 self297 end298 #299 # A convenience method that performs click-and-hold at the location of300 # the source element, moves by a given offset, then releases the mouse.301 #302 # @example Drag and drop an element by offset303 #304 # el = driver.find_element(id: "some_id1")305 # driver.action.drag_and_drop_by(el, 100, 100).perform306 #307 # @param [Selenium::WebDriver::Element] source Element to emulate button down at.308 # @param [Integer] right_by horizontal move offset.309 # @param [Integer] down_by vertical move offset.310 # @param [Symbol || String] device optional name of the PointerInput device with the button311 # that will perform the drag and drop312 # @return [W3CActionBuilder] A self reference.313 #314 def drag_and_drop_by(source, right_by, down_by, device: nil)315 click_and_hold(source, device: device)316 move_by(right_by, down_by, device: device)317 release(device: device)318 self319 end320 private321 def button_action(button, action: nil, device: nil)322 pointer = get_pointer(device)323 pointer.send(action, button)324 tick(pointer)325 self326 end327 def get_pointer(device = nil)328 get_device(device) || pointer_inputs.first329 end330 end # PointerActions...

Full Screen

Full Screen

move_by

Using AI Code Generation

copy

Full Screen

1wait = Selenium::WebDriver::Wait.new(timeout: 10)2wait.until { driver.find_element(:name, 'q') }3driver.action.move_to(driver.find_element(:name, 'q')).move_by(100, 100).perform

Full Screen

Full Screen

move_by

Using AI Code Generation

copy

Full Screen

1search_box = driver.find_element(:name, 'q')2search_box.send_keys("Selenium WebDriver")3action = Selenium::WebDriver::PointerActions.new(driver)4action.move_by(0, 0).click(search_box).perform5search_box = driver.find_element(:name, 'q')6search_box.send_keys("Selenium WebDriver")7action = Selenium::WebDriver::PointerActions.new(driver)8action.drag_and_drop(search_box, search_box).perform9search_box = driver.find_element(:name, 'q')10search_box.send_keys("Selenium WebDriver")11action = Selenium::WebDriver::PointerActions.new(driver)12action.drag_and_drop_by(search_box, 100, 100).perform13search_box = driver.find_element(:name, 'q')14search_box.send_keys("Selenium WebDriver")15action = Selenium::WebDriver::PointerActions.new(driver)16action.drag_and_drop_by_offset(search_box, 100, 100).perform17search_box = driver.find_element(:name, 'q')18search_box.send_keys("Selenium WebDriver")

Full Screen

Full Screen

move_by

Using AI Code Generation

copy

Full Screen

1element = driver.find_element(:name, 'q')2actions = Selenium::WebDriver::ActionBuilder.new(driver)3actions.move_to(element).perform4move_by(x, y)5actions = Selenium::WebDriver::ActionBuilder.new(driver)6actions.move_by(200, 200).perform7move_to(element, x, y)

Full Screen

Full Screen

move_by

Using AI Code Generation

copy

Full Screen

1pointer = driver.action.pointer.move_by(200, 200)2element = driver.find_element(:name, 'q')3pointer = driver.action.pointer.move_to(element)4element = driver.find_element(:name, 'q')5pointer = driver.action.pointer.move_to_element(element)6element = driver.find_element(:name, 'q')7pointer = driver.action.pointer.move_to_element_with_offset(element, 200, 200)8element = driver.find_element(:name, 'q')9pointer = driver.action.pointer.move_to(element)

Full Screen

Full Screen

move_by

Using AI Code Generation

copy

Full Screen

1pointer = driver.action.pointer.move_by(200, 200)2element = driver.find_element(:name, 'q')3pointer = driver.action.pointer.move_to(element)4element = deiver.find_element(xpath:,"//a[text()='Projects']")5actions.move_to(element).perform6autsons.move_by(50, 50).periorm

Full Screen

Full Screen

move_by

Using AI Code Generation

copy

Full Screen

1@ait = Selenium::WebDriver::Wait.new(:timeout => 10)2@driver.action.move_to(@driver.find_element(:link_text, 'Draggable')).perform3@driver.action.move_to(@drivfind_element(:link_text, 'Resizable')).perform4@driver.action.move_to(@driver.find_element(:link_text, 'Selectable')).perform5@driver.action.move_to(@driver.find_element(:link_text, 'Sortable')).perform6element = driver.find_element(:name, 'q')7pointer = driver.action.pointer.move_to_element_with_offset(element, 200, 200)8element = driver.find_element(:name, 'q')9pointer = driver.action.pointer.move_to(element)

Full Screen

Full Screen

move_by

Using AI Code Generation

copy

Full Screen

1element = driver.find_element(xpath: "//a[text()='Projects']")2actions.move_to(element).perform3actions.move_by(50, 50).perform

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Selenium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful