How to use ClickAndHoldAction class of org.openqa.selenium.interactions package

Best Selenium code snippet using org.openqa.selenium.interactions.ClickAndHoldAction

Source:TrendingService.java Github

copy

Full Screen

...18import org.openqa.selenium.Point;19import org.openqa.selenium.WebDriver;20import org.openqa.selenium.WebElement;21import org.openqa.selenium.interactions.ButtonReleaseAction;22import org.openqa.selenium.interactions.ClickAndHoldAction;23import org.openqa.selenium.interactions.CompositeAction;24import org.openqa.selenium.interactions.HasInputDevices;25import org.openqa.selenium.interactions.Mouse;26import org.openqa.selenium.interactions.MoveToOffsetAction;27import org.openqa.selenium.internal.Locatable;28import java.text.DecimalFormat;29import java.text.ParseException;30import java.util.Collections;31import java.util.Iterator;32import java.util.List;33import java.util.stream.Collectors;34public class TrendingService {35 private static final DecimalFormat DECIMAL_FORMAT = new DecimalFormat("#,###");36 private static final int SAFE_DISTANCE_FROM_POINT_TO_CLICK_FOR_DRAG = 10;37 private static final int DISTANCE_TO_DRAG = 500;38 private final FindElementFactory elementFactory;39 public TrendingService(final FindApplication<?> find) {40 elementFactory = find.elementFactory();41 }42 public Float yAxisLabelRange(final TrendingView trendingView) {43 final List<WebElement> yAxisTicks = trendingView.yAxisTicks();44 final List<Float> valueArray = yAxisTicks45 .stream()46 .map(label -> label.getText().isEmpty() ? 0f : parseFormattedDecimal(label).floatValue())47 .collect(Collectors.toList());48 return yAxisTicks.isEmpty() ? 0f : Collections.max(valueArray) - Collections.min(valueArray);49 }50 private Number parseFormattedDecimal(final WebElement label) {51 try {52 return DECIMAL_FORMAT.parse(label.getText());53 } catch(final ParseException e) {54 throw new IllegalStateException("Axis number in unexpected format", e);55 }56 }57 public String finalXAxisLabel(final TrendingView trendingView) {58 final List<WebElement> xAxisTicks = trendingView.xAxisTicks();59 return xAxisTicks.isEmpty() ? "" : xAxisTicks.get(xAxisTicks.size() - 1).getText();60 }61 public List<String> fieldSelectorFields(final TrendingView trendingView) {62 return trendingView.fieldsList()63 .stream()64 .map(fieldAndCount -> removeCountFromFieldName(fieldAndCount).toUpperCase())65 .collect(Collectors.toList());66 }67 public String removeCountFromFieldName(final String fieldAndCount) {68 return fieldAndCount.split("\\(")[0].trim();69 }70 public List<String> filterFields() {71 return elementFactory.getFilterPanel().allFilterContainers()72 .stream()73 .map(FilterContainer::filterCategoryName)74 .collect(Collectors.toList());75 }76 public void dragRight(final TrendingView trendingView, final WebDriver driver) {77 drag(trendingView, driver, DISTANCE_TO_DRAG);78 }79 public void dragLeft(final TrendingView trendingView, final WebDriver driver) {80 drag(trendingView, driver, -DISTANCE_TO_DRAG);81 }82 public void changeSelectedField(final int index, final TrendingView trendingView) {83 trendingView.fields().get(index).click();84 }85 public void selectNonZeroField(final TrendingView trendingView) {86 if(trendingView.getSelectedFieldCount(trendingView.chosenField()) == 0) {87 trendingView.fields().stream()88 .filter(field -> trendingView.getSelectedFieldCount(field) > 0)89 .findFirst()90 .orElseThrow(() -> new IllegalStateException("No parametric fields with any values for the current query"))91 .click();92 trendingView.waitForChartToLoad();93 }94 }95 public void selectLastValueListedOfDisplayedField(final String selectedField) {96 final List<WebElement> filters = elementFactory.getFilterPanel().parametricContainer(selectedField).filters();97 filters.get(filters.size() - 1).click();98 }99 private void drag(final TrendingView trendingView, final WebDriver driver, final int xOffset) {100 final List<Point> firstPoints = trendingView.chartValueGroups().stream()101 .map(value -> trendingView.pointsForNamedValue(value.getAttribute("data-name")).get(0).getLocation())102 .sorted((x, y) -> y.getY() - x.getY())103 .collect(Collectors.toList());104 final Iterator<Point> iterator = firstPoints.iterator();105 Point point = iterator.next();106 while(iterator.hasNext()) {107 final Point next = iterator.next();108 if(point.getY() - next.getY() > SAFE_DISTANCE_FROM_POINT_TO_CLICK_FOR_DRAG) {109 break;110 }111 point = next;112 }113 final WebElement graphArea = trendingView.graphArea();114 final Point graphAreaLocation = graphArea.getLocation();115 final int yOffsetForInitialClick = point.getY() - graphAreaLocation.getY() - SAFE_DISTANCE_FROM_POINT_TO_CLICK_FOR_DRAG > 0116 ? point.getY() - graphAreaLocation.getY() - SAFE_DISTANCE_FROM_POINT_TO_CLICK_FOR_DRAG : firstPoints.get(0).getY() - graphAreaLocation.getY() + SAFE_DISTANCE_FROM_POINT_TO_CLICK_FOR_DRAG;117 final Mouse mouse = ((HasInputDevices)driver).getMouse();118 final CompositeAction action = new CompositeAction();119 action.addAction(new MoveToOffsetAction(mouse, (Locatable)graphArea, point.getX() - graphAreaLocation.getX() + SAFE_DISTANCE_FROM_POINT_TO_CLICK_FOR_DRAG, yOffsetForInitialClick));120 action.addAction(new ClickAndHoldAction(mouse, null));121 action.addAction(new MoveToOffsetAction(mouse, null, xOffset, 0));122 action.addAction(new ButtonReleaseAction(mouse, null));123 action.perform();124 }125}...

Full Screen

Full Screen

Source:MyActions.java Github

copy

Full Screen

...4import org.openqa.selenium.WebElement;5import org.openqa.selenium.interactions.Action;6import org.openqa.selenium.interactions.ButtonReleaseAction;7import org.openqa.selenium.interactions.ClickAction;8import org.openqa.selenium.interactions.ClickAndHoldAction;9import org.openqa.selenium.interactions.ContextClickAction;10import org.openqa.selenium.interactions.DoubleClickAction;11import org.openqa.selenium.interactions.HasInputDevices;12import org.openqa.selenium.interactions.KeyDownAction;13import org.openqa.selenium.interactions.KeyUpAction;14import org.openqa.selenium.interactions.Keyboard;15import org.openqa.selenium.interactions.Mouse;16import org.openqa.selenium.interactions.MoveMouseAction;17import org.openqa.selenium.interactions.MoveToOffsetAction;18import org.openqa.selenium.interactions.SendKeysAction;19import org.openqa.selenium.internal.Locatable;20public class MyActions {21 protected Mouse mouse;22 protected Keyboard keyboard;23 protected MyCompositeAction action;24 25 public MyActions(WebDriver driver) {26 this(((HasInputDevices)driver).getKeyboard(), ((HasInputDevices)driver).getMouse());27 }28 29 public MyActions(Keyboard keyboard, Mouse mouse) {30 this.mouse = mouse;31 this.keyboard = keyboard;32 resetCompositeAction();33 }34 public MyActions(Keyboard keyboard) {35 this.keyboard = keyboard;36 resetCompositeAction();37 }38 private void resetCompositeAction() {39 action = new MyCompositeAction();40 }41 public MyActions keyDown(Keys theKey) {42 return keyDown(null, theKey);43 }44 public MyActions keyDown(WebElement element, Keys theKey) {45 action.addAction(new KeyDownAction(keyboard, mouse, (Locatable)element, theKey));46 return this;47 }48 public MyActions keyUp(Keys theKey) {49 return keyUp(null, theKey);50 }51 public MyActions keyUp(WebElement element, Keys theKey) {52 action.addAction(new KeyUpAction(keyboard, mouse, (Locatable)element, theKey));53 return this;54 }55 public MyActions sendKeys(CharSequence keysToSend[]) {56 return sendKeys(null, keysToSend);57 }58 public MyActions sendKeys(WebElement element, CharSequence keysToSend[]) {59 action.addAction(new SendKeysAction(keyboard, mouse, (Locatable)element, keysToSend));60 return this;61 }62 public MyActions clickAndHold(WebElement onElement) {63 action.addAction(new ClickAndHoldAction(mouse, (Locatable)onElement));64 return this;65 }66 public MyActions clickAndHold() {67 return clickAndHold(null);68 }69 public MyActions release(WebElement onElement) {70 action.addAction(new ButtonReleaseAction(mouse, (Locatable)onElement));71 return this;72 }73 public MyActions release() {74 return release(null);75 }76 public MyActions click(WebElement onElement) {77 action.addAction(new ClickAction(mouse, (Locatable)onElement));78 return this;79 }80 public MyActions click() {81 return click(null);82 }83 public MyActions doubleClick(WebElement onElement) {84 action.addAction(new DoubleClickAction(mouse, (Locatable)onElement));85 return this;86 }87 public MyActions doubleClick() {88 return doubleClick(null);89 }90 public MyActions moveToElement(WebElement toElement) {91 action.addAction(new MoveMouseAction(mouse, (Locatable)toElement));92 return this;93 }94 public MyActions moveToElement(WebElement toElement, int xOffset, int yOffset) {95 action.addAction(new MoveToOffsetAction(mouse, (Locatable)toElement, xOffset, yOffset));96 return this;97 }98 public MyActions moveByOffset(int xOffset, int yOffset) {99 action.addAction(new MoveToOffsetAction(mouse, null, xOffset, yOffset));100 return this;101 }102 public MyActions contextClick(WebElement onElement) {103 action.addAction(new ContextClickAction(mouse, (Locatable)onElement));104 return this;105 }106 public MyActions contextClick() {107 return contextClick(null);108 }109 public MyActions dragAndDrop(WebElement source, WebElement target) {110 action.addAction(new ClickAndHoldAction(mouse, (Locatable)source));111 action.addAction(new MoveMouseAction(mouse, (Locatable)target));112 action.addAction(new ButtonReleaseAction(mouse, (Locatable)target));113 return this;114 }115 public MyActions dragAndDropBy(WebElement source, int xOffset, int yOffset) {116 action.addAction(new ClickAndHoldAction(mouse, (Locatable)source));117 action.addAction(new MoveToOffsetAction(mouse, null, xOffset, yOffset));118 action.addAction(new ButtonReleaseAction(mouse, null));119 return this;120 }121 public Action build() {122 MyCompositeAction toReturn = action;123 resetCompositeAction();124 return toReturn;125 }126 public void perform() {127 build().perform();128 }129}...

Full Screen

Full Screen

Source:WebDriverActions.java Github

copy

Full Screen

...9import org.openqa.selenium.interactions.Action;10import org.openqa.selenium.interactions.Actions;11import org.openqa.selenium.interactions.ButtonReleaseAction;12import org.openqa.selenium.interactions.ClickAction;13import org.openqa.selenium.interactions.ClickAndHoldAction;14import org.openqa.selenium.interactions.CompositeAction;15import org.openqa.selenium.interactions.ContextClickAction;16import org.openqa.selenium.interactions.KeyDownAction;17import org.openqa.selenium.interactions.KeyUpAction;18import org.openqa.selenium.interactions.MoveMouseAction;19import org.openqa.selenium.interactions.MoveToOffsetAction;20import org.openqa.selenium.interactions.SendKeysAction;21import org.openqa.selenium.internal.Locatable;2223import sk.seges.sesam.core.test.selenium.configuration.annotation.SeleniumSettings;2425public class WebDriverActions extends Actions {2627 protected SeleniumSettings testEnvironment;2829 protected Mouse mouse;30 protected Keyboard keyboard;31 protected CompositeAction action;32 protected WebDriver webDriver;33 34 public WebDriverActions(WebDriver webDriver, SeleniumSettings testEnvironment) {35 this(webDriver, ((HasInputDevices) webDriver).getKeyboard(), ((HasInputDevices) webDriver).getMouse(), testEnvironment);36 }3738 public WebDriverActions(WebDriver webDriver, Keyboard keyboard, Mouse mouse, SeleniumSettings testEnvironment) {39 super(keyboard, mouse);40 this.mouse = mouse;41 this.keyboard = keyboard;42 action = new CompositeAction();43 this.testEnvironment = testEnvironment;44 this.webDriver = webDriver;45 }4647 public Actions keyDown(Keys theKey) {48 return this.keyDown(null, theKey);49 }5051 public Actions keyDown(WebElement element, Keys theKey) {52 action.addAction(new KeyDownAction(keyboard, mouse, (Locatable) element, theKey));53 return this;54 }5556 public Actions keyUp(Keys theKey) {57 return this.keyUp(null, theKey);58 }5960 public Actions keyUp(WebElement element, Keys theKey) {61 action.addAction(new KeyUpAction(keyboard, mouse, (Locatable) element, theKey));62 return this;63 }6465 public Actions sendKeys(CharSequence... keysToSend) {66 return this.sendKeys(null, keysToSend);67 }6869 public Actions sendKeys(WebElement element, CharSequence... keysToSend) {70 action.addAction(new SendKeysAction(keyboard, mouse, (Locatable) element, keysToSend));71 return this;72 }7374 public Actions clickAndHold(WebElement onElement) {75 action.addAction(new ClickAndHoldAction(mouse, (Locatable) onElement));76 return this;77 }7879 public Actions release(WebElement onElement) {80 action.addAction(new ButtonReleaseAction(mouse, (Locatable) onElement));81 return this;82 }8384 public Actions click(WebElement onElement) {85 action.addAction(new ClickAction(mouse, (Locatable) onElement));86 return this;87 }8889 public Actions click() {90 return this.click(null);91 }9293 public Actions moveToElement(WebElement toElement) {94 action.addAction(new MoveMouseAction(mouse, (Locatable) toElement));95 return this;96 }9798 public Actions moveToElement(WebElement toElement, int xOffset, int yOffset) {99 action.addAction(new MoveToOffsetAction(mouse, (Locatable) toElement, xOffset, yOffset));100 return this;101 }102103 public Actions moveByOffset(int xOffset, int yOffset) {104 action.addAction(new MoveToOffsetAction(mouse, null, xOffset, yOffset));105 return this;106 }107108 public Actions contextClick(WebElement onElement) {109 action.addAction(new ContextClickAction(mouse, (Locatable) onElement));110 return this;111 }112113 public Actions dragAndDrop(WebElement source, WebElement target) {114 action.addAction(new ClickAndHoldAction(mouse, (Locatable) source));115 action.addAction(new MoveMouseAction(mouse, (Locatable) target));116 action.addAction(new ButtonReleaseAction(mouse, (Locatable) target));117 return this;118 }119120 public Action build() {121 CompositeAction toReturn = action;122 action = new CompositeAction();123 return toReturn;124 }125126 public void perform() {127 build().perform();128 } ...

Full Screen

Full Screen

Source:DragTo.java Github

copy

Full Screen

...6import org.openqa.selenium.Mouse;7import org.openqa.selenium.interactions.Action;8import org.openqa.selenium.interactions.Actions;9import org.openqa.selenium.interactions.ButtonReleaseAction;10import org.openqa.selenium.interactions.ClickAndHoldAction;11import org.openqa.selenium.interactions.MoveMouseAction;12import org.openqa.selenium.internal.Locatable;13public class DragTo extends ActionOnHtmlElement {14 15 HtmlElement targetElement;16 protected Mouse mouse;17 protected Keyboard keyboard;18 public DragTo(Browser browser, HtmlElement sourceElement, HtmlElement targetElement) {19 super(browser, sourceElement);20 this.targetElement = targetElement;21 22 mouse = ((HasInputDevices) browser.getWebDriver()).getMouse();23 keyboard = ((HasInputDevices) browser.getWebDriver()).getKeyboard();24 }25 26 protected void perform() throws Exception {27 if(element != null) {28 if(targetElement != null) {29 browser.log().info("Dragging {} to {}", element, targetElement);30 // TODO Only working if native events are enabled on this platform31 new ClickAndHoldAction(mouse, (Locatable) element.getSeleniumElement()).perform();32 new MoveMouseAction(mouse, (Locatable) targetElement.getSeleniumElement()).perform();33 new ButtonReleaseAction(mouse, null).perform();34// Action dragAction = new Actions(browser.getWebDriver()).dragAndDrop(element.getSeleniumElement(), targetElement.getSeleniumElement()).build();35// dragAction.perform();36// element.getSeleniumElement().dragAndDropOn(targetElement.getSeleniumElement());37 } else {38 browser.log().warn("Target element to drag on does not exist");39 }40 } else {41 browser.log().warn("Element to drag does not exist");42 }43 }44}...

Full Screen

Full Screen

Source:Actions.java Github

copy

Full Screen

...13package org.oneandone.qxwebdriver.interactions;14import org.openqa.selenium.WebDriver;15import org.openqa.selenium.WebElement;16import org.openqa.selenium.interactions.ButtonReleaseAction;17import org.openqa.selenium.interactions.ClickAndHoldAction;18import org.openqa.selenium.interactions.MoveMouseAction;19import org.openqa.selenium.interactions.MoveToOffsetAction;20import org.openqa.selenium.internal.Locatable;21/**22 * Interactions for qx.Desktop widgets23 */24public class Actions extends org.openqa.selenium.interactions.Actions {25 public Actions(WebDriver driver) {26 super(driver);27 }28 29 /**30 * Drag and drop action with additional mouse move required by qooxdoo. 31 */32 public Actions dragAndDrop(WebElement source, WebElement target) {33 action.addAction(new ClickAndHoldAction(mouse, (Locatable) source));34 // qx needs an additional mousemove event to initialize a drag session35 action.addAction(new MoveToOffsetAction(mouse, null, 5, 5));36 action.addAction(new MoveMouseAction(mouse, (Locatable) target));37 action.addAction(new ButtonReleaseAction(mouse, (Locatable) target));38 return this;39 }40}...

Full Screen

Full Screen

Source:ClickAndHoldAction.java Github

copy

Full Screen

...4import java.util.List;5import org.openqa.selenium.interactions.internal.MouseAction;6import org.openqa.selenium.internal.Locatable;7@Deprecated8public class ClickAndHoldAction9 extends MouseAction10 implements Action11{12 public ClickAndHoldAction(Mouse mouse, Locatable locationProvider)13 {14 super(mouse, locationProvider);15 }16 17 public void perform()18 {19 moveToLocation();20 mouse.mouseDown(getActionLocation());21 }22 23 public List<Interaction> asInteractions(PointerInput mouse, KeyInput keyboard)24 {25 ImmutableList.Builder<Interaction> interactions = ImmutableList.builder();26 ...

Full Screen

Full Screen

ClickAndHoldAction

Using AI Code Generation

copy

Full Screen

1package com.test;2import org.openqa.selenium.By;3import org.openqa.selenium.WebDriver;4import org.openqa.selenium.WebElement;5import org.openqa.selenium.chrome.ChromeDriver;6import org.openqa.selenium.interactions.Action;7import org.openqa.selenium.interactions.Actions;8public class ClickAndHold {9 public static void main(String[] args) {10 System.setProperty("webdriver.chrome.driver", "C:/Users/DELL/Desktop/chromedriver.exe");11 WebDriver driver = new ChromeDriver();12 Actions builder = new Actions(driver);13 Action clickAndHold = builder.clickAndHold(link).build();14 clickAndHold.perform();15 }16}

Full Screen

Full Screen

ClickAndHoldAction

Using AI Code Generation

copy

Full Screen

1package com.example;2import java.util.concurrent.TimeUnit;3import org.openqa.selenium.By;4import org.openqa.selenium.WebDriver;5import org.openqa.selenium.WebElement;6import org.openqa.selenium.chrome.ChromeDriver;7import org.openqa.selenium.interactions.ClickAndHoldAction;8import org.openqa.selenium.interactions.Actions;9public class ClickAndHold {10public static void main(String[] args) {11 System.setProperty("webdriver.chrome.driver", "C:\\Users\\shubham\\Downloads\\chromedriver_win32\\chromedriver.exe");12 WebDriver driver = new ChromeDriver();13 driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);14 driver.manage().window().maximize();15 Actions action = new Actions(driver);16 ClickAndHoldAction click = action.clickAndHold(element);17 click.perform();18}19}

Full Screen

Full Screen

ClickAndHoldAction

Using AI Code Generation

copy

Full Screen

1package com.selenium4beginners.selenium_testng;2import org.openqa.selenium.By;3import org.openqa.selenium.WebDriver;4import org.openqa.selenium.WebElement;5import org.openqa.selenium.interactions.Actions;6import org.openqa.selenium.support.ui.ExpectedConditions;7import org.openqa.selenium.support.ui.WebDriverWait;8import org.testng.annotations.Test;9public class ClickAndHoldAction extends BaseTest {10 public void clickAndHoldAction () {11 WebDriverWait wait = new WebDriverWait(driver, 30);12 Actions action = new Actions(driver);13 driver.switchTo().frame(0);14 WebElement source = wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("draggable")));15 WebElement target = wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("droppable")));16 action.clickAndHold(source).moveToElement(target).release().build().perform();17 }18}

Full Screen

Full Screen

ClickAndHoldAction

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.interactions.touch.ClickAndHoldAction;2import org.openqa.selenium.interactions.touch.ClickAction;3import org.openqa.selenium.interactions.touch.ContextClickAction;4import org.openqa.selenium.interactions.touch.DoubleClickAction;5import org.openqa.selenium.interactions.touch.DragAndDropAction;6import org.openqa.selenium.interactions.touch.DragAndDropByAction;7import org.openqa.selenium.interactions.touch.DragAndDropOnAction;8import org.openqa.selenium.interactions.touch.KeyDownAction;9import org.openqa.selenium.inter

Full Screen

Full Screen

ClickAndHoldAction

Using AI Code Generation

copy

Full Screen

1Actions action = new Actions(driver);2action.clickAndHold(element).build().perform();3Actions action = new Actions(driver);4action.doubleClick(element).build().perform();5Actions action = new Actions(driver);6action.keyDown(element, Keys.CONTROL).build().perform();7Actions action = new Actions(driver);8action.keyUp(element, Keys.CONTROL).build().perform();9Actions action = new Actions(driver);10action.moveToElement(element).build().perform();11Actions action = new Actions(driver);12action.release(element).build().perform();13Actions action = new Actions(driver);

Full Screen

Full Screen
copy
1public class Outer {2 public class Inner {}34 public static class Nested {}5}6
Full Screen
copy
1public class C0 {23 static C0 instance = null;45 // Uncomment the following line and a null pointer exception will be6 // generated before anything gets printed.7 //public static final String outerItem = instance.makeString(98.6);89 public C0() {10 instance = this;11 }1213 public String makeString(int i) {14 return ((new Integer(i)).toString());15 }1617 public String makeString(double d) {18 return ((new Double(d)).toString());19 }2021 public static final class nested {22 public static final String innerItem = instance.makeString(42);23 }2425 static public void main(String[] argv) {26 System.out.println("start");27 // Comment out this line and a null pointer exception will be28 // generated after "start" prints and before the following29 // try/catch block even gets entered.30 new C0();31 try {32 System.out.println("retrieve item: " + nested.innerItem);33 }34 catch (Exception e) {35 System.out.println("failed to retrieve item: " + e.toString());36 }37 System.out.println("finish");38 }39}40
Full Screen

Selenium 4 Tutorial:

LambdaTest’s Selenium 4 tutorial is covering every aspects of Selenium 4 testing with examples and best practices. Here you will learn basics, such as how to upgrade from Selenium 3 to Selenium 4, to some advanced concepts, such as Relative locators and Selenium Grid 4 for Distributed testing. Also will learn new features of Selenium 4, such as capturing screenshots of specific elements, opening a new tab or window on the browser, and new protocol adoptions.

Chapters:

  1. Upgrading From Selenium 3 To Selenium 4?: In this chapter, learn in detail how to update Selenium 3 to Selenium 4 for Java binding. Also, learn how to upgrade while using different build tools such as Maven or Gradle and get comprehensive guidance for upgrading Selenium.

  2. What’s New In Selenium 4 & What’s Being Deprecated? : Get all information about new implementations in Selenium 4, such as W3S protocol adaption, Optimized Selenium Grid, and Enhanced Selenium IDE. Also, learn what is deprecated for Selenium 4, such as DesiredCapabilites and FindsBy methods, etc.

  3. Selenium 4 With Python: Selenium supports all major languages, such as Python, C#, Ruby, and JavaScript. In this chapter, learn how to install Selenium 4 for Python and the features of Python in Selenium 4, such as Relative locators, Browser manipulation, and Chrom DevTool protocol.

  4. Selenium 4 Is Now W3C Compliant: JSON Wireframe protocol is retiring from Selenium 4, and they are adopting W3C protocol to learn in detail about the advantages and impact of these changes.

  5. How To Use Selenium 4 Relative Locator? : Selenium 4 came with new features such as Relative Locators that allow constructing locators with reference and easily located constructors nearby. Get to know its different use cases with examples.

  6. Selenium Grid 4 Tutorial For Distributed Testing: Selenium Grid 4 allows you to perform tests over different browsers, OS, and device combinations. It also enables parallel execution browser testing, reads up on various features of Selenium Grid 4 and how to download it, and runs a test on Selenium Grid 4 with best practices.

  7. Selenium Video Tutorials: Binge on video tutorials on Selenium by industry experts to get step-by-step direction from automating basic to complex test scenarios with Selenium.

Selenium 101 certifications:

LambdaTest also provides certification for Selenium testing to accelerate your career in Selenium automation testing.

Run Selenium automation tests on LambdaTest cloud grid

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

Most used methods in ClickAndHoldAction

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful