Skip to content
Advertisement

Selenium Select – Selecting dropdown option by part of the text

The class Selenium Select has 3 methods of different option selection:

  1. selectByIndex
  2. selectByValue
  3. selectByVisibleText

Now, I have a situation where I want to select an option by some text that partially appear in one of the options visible text (don’t want to expose myself to changes in the WHOLE text).

For example:

JavaScript

And i want to select this option only by providing the “DOLLAR”, something like:

JavaScript

How would you implement it effectively?

Advertisement

Answer

You can try a logic like this hope this helps

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement