I am working on selenium using Java. In my application I want to select any random value from the dropdown. Please tell how is it possible?
What Sachin said. I know often it's good to get an actual code reply, so assuming you're working with a JComboBox:
JComboBox
comboBox.setSelectedIndex(new Random().nextInt(comboBox.getItemCount()));
The class Random can be found in the java.util package.
java.util