Home > Enterprise >  How to select the option preferred country/region website from the dropdown listbox within using Sel
How to select the option preferred country/region website from the dropdown listbox within using Sel

Time:01-13

How to select the option preferred country/region website Turkey from the dropdown listbox within https://www.amazon.com/customer-preferences/country/?ref_=nav_em_locale_0_1_1_37 using Selenium in Java?

screenshot

I didn't find id and name when i try to find from inspect.

CodePudding user response:

Try using the class = a-icon a-icon-dropdown . In selenium you can also use the class if I am not mistaken, you just have to be careful because sometimes they use the same class for different objects.

  • Related