Posts by Reinaldo Mateus Rossetti Junio • 1 point
2 posts
-
0
votes2
answers398
viewsA: Selenium Python
I think that’s what you want to do, but if you’re not going to test the link, follow the route approach. from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from…
-
0
votes4
answers2850
viewsA: Selenium cannot find by id
Why don’t you search all the elements of the kind checkbox and then click on the element you want, it’s always the easiest way. Kind of: List<WebElement> checkboxes =…