How to Fetch Text from two separate div's with same class name?

后端 未结 2 479
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-25 12:28

I have to fetch two labels \'Text 1\', \'Text 2\' which belongs to same class =\'xyz\', which are located in two div\'s.Structure as shown below.

2条回答
  •  醉话见心
    2021-01-25 12:49

    You find elements by className and then use getText() to get the text:

    List elements = driver.findElements(By.className("xyz"));
    
    for(WebElement element:elements) {
        System.out.println(element.getText());
    }
    

提交回复
热议问题