
Hello
PS: what about the exact error ?
David
De : seleniu...@googlegroups.com <seleniu...@googlegroups.com>
De la part de hi?p nguy?n van
Envoyé : dimanche 12 novembre 2023 18:01
À : Selenium Users <seleniu...@googlegroups.com>
Objet : [selenium-users] Checkbox unable to locate
ATTENTION : cet e-mail provient d'une personne externe. Vérifiez toujours l’expéditeur avant d’ouvrir les pièces jointes ou de cliquer sur les liens.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
selenium-user...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/selenium-users/883dd76a-1345-4b75-9bdd-da8f6c0b8f95n%40googlegroups.com.

--
You can try other ways to perform the click operations like using :
1. Actions..
Actions act = new Actions(driver);
act.moveToElement(driver.findElement(By.id("_2a0ba0a0a0e0a0a0a5a1b"))).click().perform();
2. Using JavascriptExecutor
JavascriptExecutor js = (JavascriptExecutor) driver;
WebElement elementToClick = driver.findElement(By.id("_2a0ba0a0a0e0a0a0a5a1b"));
js.executeScript("arguments[0].click();", elementToClick);
Do let know if this resolved your problem
Thanks,
Sriram
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAO9xZuFN8xykvpePetHhu1YgCZb7Jw7pXuqqA6RdsJZ_zPy91g%40mail.gmail.com.