- nag6789
- Posts : 1
Join date : 2014-06-10
How to Sort List<WebElements>
Tue Jun 10, 2014 9:14 pm
Details Steps are below.
1. Opened Ebay Site
2. Searched for LED TV
3. Captured prices of the results
List uiAllPrices = oBrowser.findElements(By.xpath("//td[@class='prc']/div//div[@itemprop='price']/span"));
For example: If 3 types of LED TV's shown up in the results with the Prices like 20, 10, 50
4. Now I would like to sort the values captured in uiAllPrices.
Example: 10, 20, 50 or 50, 20, 10
Any of your help will be greatly appreciated.
1. Opened Ebay Site
2. Searched for LED TV
3. Captured prices of the results
List
For example: If 3 types of LED TV's shown up in the results with the Prices like 20, 10, 50
4. Now I would like to sort the values captured in uiAllPrices.
Example: 10, 20, 50 or 50, 20, 10
Any of your help will be greatly appreciated.
Re: How to Sort List<WebElements>
Mon Jun 23, 2014 8:42 pm
hi,
Best way to store all values of list in Map/Dictionary and then sort on the basis of value.
if your using java, refer following link otherwise find same solution for your prog lang:
http://www.mkyong.com/java/how-to-sort-a-map-in-java/
Best way to store all values of list in Map/Dictionary and then sort on the basis of value.
if your using java, refer following link otherwise find same solution for your prog lang:
http://www.mkyong.com/java/how-to-sort-a-map-in-java/
- mail2prassadAmateur
- Posts : 41
Join date : 2013-06-05
Re: How to Sort List<WebElements>
Fri Jul 18, 2014 7:35 pm
- Code:
Collections.sort(uiAllPrices );
- Rajasekhar
- Posts : 1
Join date : 2014-07-24
Re: How to Sort List<WebElements>
Thu Jul 24, 2014 5:53 pm
Hi,
Iam giving the code for sorting the list
List namesList=new ArrayList();
namesList.add("Ravi");
namesList.add("Gopal");
namesList.add("Arun");
System.out.println(namesList);
Collections.sort(namesList);
System.out.println(namesList);
Iam giving the code for sorting the list
List namesList=new ArrayList();
namesList.add("Ravi");
namesList.add("Gopal");
namesList.add("Arun");
System.out.println(namesList);
Collections.sort(namesList);
System.out.println(namesList);
- nabhanya.varmaActive particpant
- Posts : 13
Join date : 2014-03-02
Re: How to Sort List<WebElements>
Sat Sep 13, 2014 5:30 pm
Please try below
List allOptions = se.getOptions();
// create one list
List list = new ArrayList(Arrays.asList(allOptions));
System.out.println("List value before: "+list);
// sort the list
Collections.sort(list);
List
// create one list
List list = new ArrayList(Arrays.asList(allOptions));
System.out.println("List value before: "+list);
// sort the list
Collections.sort(list);
Permissions in this forum:
You cannot reply to topics in this forum