login screen.
- In Login screen (Country, User name, Password) available.
- Country is Spinner(drop down list) & data is in alphabetical order.
- I need to select ex "United Kindom".
How to select that country.
Spinner opening time showing 6 countries(America, Australia, etc. I can select those countries.
driver.findEliment(By.id("spinner")).click();
driver.findElement(By.name("America");
So America is selecting No problem is this case.
Now i Need to select "United Kingdom"
driver.findEliment(By.id("spinner")).click();
driver.findElement(By.name("United Kingdom");
not working
I need to scroll right?
How to scroll, can you tell me please...