当小数值在价格中时,如何使用webdriver在像沃尔玛这样的网站上找到最高价格的产品?

时间:2017-01-06 13:12:42

标签: sorting selenium webdriver

在沃尔玛网站上,我如何找到价格最高的包?

网址为: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

行李的价格是十进制格式,那么如何排序并找到最高价格?

0 个答案:

没有答案