Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
with "random" you mean like "I don't care what is selected"? Why don't just pick the first option always? – Mauricio Feb 3 '11 at 12:25

4 Answers

Well, first get the total number of items in the dropdown. Then generate a random number between 0 and dropdown items count. Then select that number as index to set your dropdown item

share|improve this answer

Use getSelectOptions to get an array of options of the select box.

Then generate a random integer between 0 (inclusive) and the length of the array (exclusive).

Then use select with an index locator to select the randomly chosen option.

share|improve this answer

What Sachin said. I know often it's good to get an actual code reply, so assuming you're working with a JComboBox:

comboBox.setSelectedIndex(new Random().nextInt(comboBox.getItemCount()));

The class Random can be found in the java.util package.

share|improve this answer
Yes, a code example is good, but sorry, in this case, the user is referencing Selenium, and not swing. – Mikezx6r Feb 3 '11 at 12:49

First generate a random number between 0 and the number of items in your list. For example:

int random = new Random().nextInt(5);

Then use this random number as the index in your select call:

select("mydropdown", "index=" + random);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.