How to use move_to method of Selenium.WebDriver Package

Best Selenium code snippet using Selenium.WebDriver.move_to

pointer_actions.rb

Source:pointer_actions.rb Github

copy

Full Screen

...69 #70 # @example Scroll element into view and move the mouse to it71 #72 # el = driver.find_element(id: "some_id")73 # driver.action.move_to(el).perform74 #75 # @example76 #77 # el = driver.find_element(id: "some_id")78 # driver.action.move_to(el, 100, 100).perform79 #80 # @param [Selenium::WebDriver::Element] element to move to.81 # @param [Integer] right_by Optional offset from the top-left corner. A negative value means82 # coordinates to the left of the element.83 # @param [Integer] down_by Optional offset from the top-left corner. A negative value means84 # coordinates above the element.85 # @param [Symbol || String] device optional name of the PointerInput device to move.86 # @return [W3CActionBuilder] A self reference.87 #88 def move_to(element, right_by = nil, down_by = nil, device: nil)89 pointer = get_pointer(device)90 # New actions offset is from center of element91 if right_by || down_by92 size = element.size93 left_offset = (size[:width] / 2).to_i94 top_offset = (size[:height] / 2).to_i95 left = -left_offset + (right_by || 0)96 top = -top_offset + (down_by || 0)97 else98 left = 099 top = 0100 end101 pointer.create_pointer_move(duration: default_move_duration,102 x: left,103 y: top,104 element: element)105 tick(pointer)106 self107 end108 #109 # Moves the mouse from its current position by the given offset.110 # If the coordinates provided are outside the viewport (the mouse will111 # end up outside the browser window) then the viewport is scrolled to112 # 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....

Full Screen

Full Screen

action_builder.rb

Source:action_builder.rb Github

copy

Full Screen

...115 #116 # Clicks (without releasing) in the middle of the given element. This is117 # equivalent to:118 #119 # driver.action.move_to(element).click_and_hold120 #121 # @example Clicking and holding on some element122 #123 # el = driver.find_element(:id, "some_id")124 # driver.action.click_and_hold(el).perform125 #126 # @param [Selenium::WebDriver::Element] element the element to move to and click.127 # @return [ActionBuilder] A self reference.128 #129 def click_and_hold(element = nil)130 @actions << [:mouse, :down, [element]]131 self132 end133 #134 # Releases the depressed left mouse button at the current mouse location.135 #136 # @example Releasing an element after clicking and holding it137 #138 # el = driver.find_element(:id, "some_id")139 # driver.action.click_and_hold(el).release.perform140 #141 # @return [ActionBuilder] A self reference.142 #143 def release(element = nil)144 @actions << [:mouse, :up, [element]]145 self146 end147 #148 # Clicks in the middle of the given element. Equivalent to:149 #150 # driver.action.move_to(element).click151 #152 # When no element is passed, the current mouse position will be clicked.153 #154 # @example Clicking on an element155 #156 # el = driver.find_element(:id, "some_id")157 # driver.action.click(el).perform158 #159 # @example Clicking at the current mouse position160 #161 # driver.action.click.perform162 #163 # @param [Selenium::WebDriver::Element] element An optional element to click.164 # @return [ActionBuilder] A self reference.165 #166 def click(element = nil)167 @actions << [:mouse, :click, [element]]168 self169 end170 #171 # Performs a double-click at middle of the given element. Equivalent to:172 #173 # driver.action.move_to(element).double_click174 #175 # @example Double click an element176 #177 # el = driver.find_element(:id, "some_id")178 # driver.action.double_click(el).perform179 #180 # @param [Selenium::WebDriver::Element] element An optional element to move to.181 # @return [ActionBuilder] A self reference.182 #183 def double_click(element = nil)184 @actions << [:mouse, :double_click, [element]]185 self186 end187 #188 # Moves the mouse to the middle of the given element. The element is scrolled into189 # view and its location is calculated using getBoundingClientRect. Then the190 # mouse is moved to optional offset coordinates from the element.191 #192 # Note that when using offsets, both coordinates need to be passed.193 #194 # @example Scroll element into view and move the mouse to it195 #196 # el = driver.find_element(:id, "some_id")197 # driver.action.move_to(el).perform198 #199 # @example200 #201 # el = driver.find_element(:id, "some_id")202 # driver.action.move_to(el, 100, 100).perform203 #204 # @param [Selenium::WebDriver::Element] element to move to.205 # @param [Integer] right_by Optional offset from the top-left corner. A negative value means206 # coordinates right from the element.207 # @param [Integer] down_by Optional offset from the top-left corner. A negative value means208 # coordinates above the element.209 # @return [ActionBuilder] A self reference.210 #211 def move_to(element, right_by = nil, down_by = nil)212 if right_by && down_by213 @actions << [:mouse, :move_to, [element, right_by, down_by]]214 else215 @actions << [:mouse, :move_to, [element]]216 end217 self218 end219 #220 # Moves the mouse from its current position (or 0,0) by the given offset.221 # If the coordinates provided are outside the viewport (the mouse will222 # end up outside the browser window) then the viewport is scrolled to223 # match.224 #225 # @example Move the mouse to a certain offset from its current position226 #227 # driver.action.move_by(100, 100).perform228 #229 # @param [Integer] right_by horizontal offset. A negative value means moving the230 # mouse left.231 # @param [Integer] down_by vertical offset. A negative value means moving the mouse232 # up.233 # @return [ActionBuilder] A self reference.234 # @raise [MoveTargetOutOfBoundsError] if the provided offset is outside235 # the document's boundaries.236 #237 def move_by(right_by, down_by)238 @actions << [:mouse, :move_by, [right_by, down_by]]239 self240 end241 #242 # Performs a context-click at middle of the given element. First performs243 # a move_to to the location of the element.244 #245 # @example Context-click at middle of given element246 #247 # el = driver.find_element(:id, "some_id")248 # driver.action.context_click(el).perform249 #250 # @param [Selenium::WebDriver::Element] element An element to context click.251 # @return [ActionBuilder] A self reference.252 #253 def context_click(element = nil)254 @actions << [:mouse, :context_click, [element]]255 self256 end257 #258 # A convenience method that performs click-and-hold at the location of the259 # source element, moves to the location of the target element, then260 # releases the mouse.261 #262 # @example Drag and drop one element onto another263 #264 # el1 = driver.find_element(:id, "some_id1")265 # el2 = driver.find_element(:id, "some_id2")266 # driver.action.drag_and_drop(el1, el2).perform267 #268 # @param [Selenium::WebDriver::Element] source element to emulate button down at.269 # @param [Selenium::WebDriver::Element] target element to move to and release the270 # mouse at.271 # @return [ActionBuilder] A self reference.272 #273 def drag_and_drop(source, target)274 click_and_hold source275 move_to target276 release target277 self278 end279 #280 # A convenience method that performs click-and-hold at the location of281 # the source element, moves by a given offset, then releases the mouse.282 #283 # @example Drag and drop an element by offset284 #285 # el = driver.find_element(:id, "some_id1")286 # driver.action.drag_and_drop_by(el, 100, 100).perform287 #288 # @param [Selenium::WebDriver::Element] source Element to emulate button down at.289 # @param [Integer] right_by horizontal move offset....

Full Screen

Full Screen

move_to

Using AI Code Generation

copy

Full Screen

1element = driver.find_element(:name, 'q')2element = driver.find_element(:name, 'q')3builder = Selenium::WebDriver::ActionBuilder.new(driver)4builder.move_to(element).perform5element = driver.find_element(:name, 'q')6builder = Selenium::WebDriver::ActionBuilder.new(driver)7builder.move_to(element).perform8element = driver.find_element(:name, 'q')9builder = Selenium::WebDriver::ActionBuilder.new(driver)10builder.move_to(element).perform11element = driver.find_element(:name, 'q')

Full Screen

Full Screen

move_to

Using AI Code Generation

copy

Full Screen

1driver.find_element(:name, "q").send_keys "Selenium"2driver.find_element(:name, "btnK").click3driver.action.move_to(driver.find_element(:link_text, "Images")).perform4driver.action.move_to(element).perform

Full Screen

Full Screen

move_to

Using AI Code Generation

copy

Full Screen

1element = driver.find_element(:name, 'q')2driver.action.move_to(element).perform3element = driver.find_element(:name, 'q')4driver.action.move_to(element).perform5element = driver.find_element(:name, 'q')6driver.action.move_to(element).perform7element = driver.find_element(:name, 'q')8driver.action.move_to(element).perform9element = driver.find_element(:name, 'q')10driver.action.move_to(element).perform11element = driver.find_element(:name, 'q')12driver.action.move_to(element).perform

Full Screen

Full Screen

move_to

Using AI Code Generation

copy

Full Screen

1element = driver.find_element(:name, 'q')2element = driver.find_element(:name, 'q')3element = driver.find_element(:name, 'q')4element = driver.find_element(:name, 'q')

Full Screen

Full Screen

move_to

Using AI Code Generation

copy

Full Screen

1driver.action.move_to(driver.find_element(:name, "q")).perform2driver.action.move_to(driver.find_element(:name, "q")).perform3driver.action.move_to(driver.find_element(:name, "btnK")).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.

Most used method in

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful