Great learning video...looking for more real-time scenarios videos like this. thank you
@dheerajsingh6568Ай бұрын
Perfect .... But I have doubts. Can we use xpath ? Scroll to every element, capture the price and name ?
@Testing_QualityAnalyst_Channel9 ай бұрын
Very informative and useful thanks Bro!
@nikhilguzar2 жыл бұрын
Very nicely explained
@UmeshKumar-h5d5jАй бұрын
Lets' say if there are two mobile costs are same value, in those case which one will picked up?
@darshanat78682 жыл бұрын
Make such scenario based video
@lechf12 жыл бұрын
How I should change this code when I need only highest prices without sorting? In this case should be only 43999 in console
@SeleTech2 жыл бұрын
You can make use of List and capture all the interger values of the price and then you can get highest price using System.out.println("Max value is: "+ Collections.max(list));
@Wake_up_to_reality_143 Жыл бұрын
7:38 we can use for each loop bro instead of for loop
@crickettales65942 жыл бұрын
can we use Tree Map
@SeleTech2 жыл бұрын
We can't use tree map as it sorts both keys and values and the key-value link will be removed so we can find second highest price product but we can't click on it.
@crickettales65942 жыл бұрын
@@SeleTech correct.... Also we can have streams api will short the code
@SeleTech2 жыл бұрын
Yes we can use steam api as well..
@Gananathan_K Жыл бұрын
Getting error in List li = new ArrayList(map.entrySet()); Error : Incorrect number of arguments for type Multiset.Entry; it cannot be parameterized with arguments
@guhanmuthukumar7809 Жыл бұрын
Same error occur, how to resolve
@dheerajsingh6568Ай бұрын
It seems you have passed wrong type. You should passed like this List list=new ArrayList(map.entrySet());