“Trouver des éléments en sélénium” Réponses codées

Trouver des éléments en sélénium

//required imports 
WebDriver driver = new ChromeDriver();
WebElement objWE;
//There are many way most common are id and xpath
objWE = driver.findElement(By.id("String of id attribute"));
//To find the xpath easily hit F12 and right click the element you want
//and copy xpath then paste it
objWE = driver.findElement(By.xpath("//*[@id="search"]/div[2]/div[6]/div[1]/div/div"));
GelatinousMustard

Sélénium façons de trouver

elementcss= driver.findElement(By.cssSelector('div.nav-search-input'))
Panicky Pintail

Trouver des éléments en sélénium

#In Python

#Let's say that we want to locate the h1 tag in this HTML:
#<html>
#    <head>
#        ... some stuff
#    </head>
#    <body>
#        <h1 class="someclass" id="greatID">Super title</h1>
#    </body>
#</html>

h1 = driver.find_element_by_name('h1')
h1 = driver.find_element_by_class_name('someclass')
h1 = driver.find_element_by_xpath('//h1')
h1 = driver.find_element_by_id('greatID')
Fun Bee

Réponses similaires à “Trouver des éléments en sélénium”

Questions similaires à “Trouver des éléments en sélénium”

Plus de réponses similaires à “Trouver des éléments en sélénium” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code