我认为这很简单,但事实并非如此。因此,请有人帮助我:
我需要从以下html提取号码:
<ol class="competition-standings">
<li class="list-item row">
<div class="column large-4 competition-standings-user ellipsis">
<div class="column large-2 small-3 competition-standings-data">
<strong>1133</strong>Posted
接送1133
尝试以下:
Select tipsnumber = new Select(findElement(By.xpath("correct xpath")));
tipsnumber.getFirstSelectedOption().getText();
System.out.println(tipsnumber);
这也
WebElement tipsnumber = driver.findElement(By.xpath("correct xpath"));
tipsnumber.getAttribute("value");
System.out.println(tipsnumber);
对于两个都没有得到数字1133
先感谢您
最佳答案
您选择使用Xpath选择器有什么原因吗?
我个人将使用以下CSS类型选择器
WebElement tipsnumber = driver.findElement(By.cssSelector("Strong"));
System.out.println(tipsnumber.getText());
>>1133