在沃尔玛网站上,我如何找到价格最高的包?
网址为:https://www.walmart.com/browse/clothing/handbags/5438_1045799_1045800?sort=price_high
获取价格和存储在列表中的代码:
public class Handbag {
public static void main(String[] args) throws InterruptedException {
WebDriver driver = new FirefoxDriver();
driver.get("https://www.walmart.com/browse/clothing/handbags/5438_1045799_1045800?sort=price_high");
List<WebElement> values=driver.findElements(By.xpath("//span[@class='price price-display']"));
for(int i=0;i<values.size();i++)
{ String value = values.get(i).getText();
System.out.println(value); // Display all values
行李的价格是十进制格式,那么如何排序并找到最高价格?