Selenium WebDriver - Select - GETOPTIONS method
up vote
-1
down vote
favorite
In below code using getoptions method in select, I am fetching all the webelements for date drop-down and printing it using for loop
WebDriver driver = new FirefoxDriver();
driver.get("http://www.facebook.com");
WebElement select_date = driver.findElement(By.xpath("//select[@id='day']"));
Select dselect = new Select(select_date);
List<WebElement> list_options = dselect.getOptions();
System.out.println(list_options.size());
for (int i=0;i<list_options.size();i++)
System.out.println(list_options.get(i));
Size of list_options(WebElement) is 32.
If we observe it has printed the same address 32 times
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
Question
Even though size of list_options(WebElement) is 32. Why it printed the same address 32 times?
Why it didn't print 32 unique address.
java selenium
add a comment |
up vote
-1
down vote
favorite
In below code using getoptions method in select, I am fetching all the webelements for date drop-down and printing it using for loop
WebDriver driver = new FirefoxDriver();
driver.get("http://www.facebook.com");
WebElement select_date = driver.findElement(By.xpath("//select[@id='day']"));
Select dselect = new Select(select_date);
List<WebElement> list_options = dselect.getOptions();
System.out.println(list_options.size());
for (int i=0;i<list_options.size();i++)
System.out.println(list_options.get(i));
Size of list_options(WebElement) is 32.
If we observe it has printed the same address 32 times
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
Question
Even though size of list_options(WebElement) is 32. Why it printed the same address 32 times?
Why it didn't print 32 unique address.
java selenium
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
In below code using getoptions method in select, I am fetching all the webelements for date drop-down and printing it using for loop
WebDriver driver = new FirefoxDriver();
driver.get("http://www.facebook.com");
WebElement select_date = driver.findElement(By.xpath("//select[@id='day']"));
Select dselect = new Select(select_date);
List<WebElement> list_options = dselect.getOptions();
System.out.println(list_options.size());
for (int i=0;i<list_options.size();i++)
System.out.println(list_options.get(i));
Size of list_options(WebElement) is 32.
If we observe it has printed the same address 32 times
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
Question
Even though size of list_options(WebElement) is 32. Why it printed the same address 32 times?
Why it didn't print 32 unique address.
java selenium
In below code using getoptions method in select, I am fetching all the webelements for date drop-down and printing it using for loop
WebDriver driver = new FirefoxDriver();
driver.get("http://www.facebook.com");
WebElement select_date = driver.findElement(By.xpath("//select[@id='day']"));
Select dselect = new Select(select_date);
List<WebElement> list_options = dselect.getOptions();
System.out.println(list_options.size());
for (int i=0;i<list_options.size();i++)
System.out.println(list_options.get(i));
Size of list_options(WebElement) is 32.
If we observe it has printed the same address 32 times
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
[[[[FirefoxDriver: firefox on WINDOWS (53f97259-e77a-4ac9-a93f-58045437fff1)] -> xpath: //select[@id='day']]] -> tag name: option]
Question
Even though size of list_options(WebElement) is 32. Why it printed the same address 32 times?
Why it didn't print 32 unique address.
java selenium
java selenium
asked Nov 10 at 0:02
Kandan Siva
9611
9611
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
It prints the same 32 times because that is the UUID of the FirefoxDriver
sessionID not the WebElement
. See https://github.com/SeleniumHQ/selenium/blob/37088bb0979bc6e5b6f03b66eb023d6af1c400ac/java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java#L994
If you want the unique ID of the WebElement, you'll have to call getId()
on it
Can u provide the exact code
– Kandan Siva
Nov 10 at 1:58
System.out.println(list_options.get(i).getId());
– Lucas Tierney
Nov 10 at 3:19
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
It prints the same 32 times because that is the UUID of the FirefoxDriver
sessionID not the WebElement
. See https://github.com/SeleniumHQ/selenium/blob/37088bb0979bc6e5b6f03b66eb023d6af1c400ac/java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java#L994
If you want the unique ID of the WebElement, you'll have to call getId()
on it
Can u provide the exact code
– Kandan Siva
Nov 10 at 1:58
System.out.println(list_options.get(i).getId());
– Lucas Tierney
Nov 10 at 3:19
add a comment |
up vote
0
down vote
It prints the same 32 times because that is the UUID of the FirefoxDriver
sessionID not the WebElement
. See https://github.com/SeleniumHQ/selenium/blob/37088bb0979bc6e5b6f03b66eb023d6af1c400ac/java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java#L994
If you want the unique ID of the WebElement, you'll have to call getId()
on it
Can u provide the exact code
– Kandan Siva
Nov 10 at 1:58
System.out.println(list_options.get(i).getId());
– Lucas Tierney
Nov 10 at 3:19
add a comment |
up vote
0
down vote
up vote
0
down vote
It prints the same 32 times because that is the UUID of the FirefoxDriver
sessionID not the WebElement
. See https://github.com/SeleniumHQ/selenium/blob/37088bb0979bc6e5b6f03b66eb023d6af1c400ac/java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java#L994
If you want the unique ID of the WebElement, you'll have to call getId()
on it
It prints the same 32 times because that is the UUID of the FirefoxDriver
sessionID not the WebElement
. See https://github.com/SeleniumHQ/selenium/blob/37088bb0979bc6e5b6f03b66eb023d6af1c400ac/java/client/src/org/openqa/selenium/remote/RemoteWebDriver.java#L994
If you want the unique ID of the WebElement, you'll have to call getId()
on it
answered Nov 10 at 1:37
Lucas Tierney
1,54778
1,54778
Can u provide the exact code
– Kandan Siva
Nov 10 at 1:58
System.out.println(list_options.get(i).getId());
– Lucas Tierney
Nov 10 at 3:19
add a comment |
Can u provide the exact code
– Kandan Siva
Nov 10 at 1:58
System.out.println(list_options.get(i).getId());
– Lucas Tierney
Nov 10 at 3:19
Can u provide the exact code
– Kandan Siva
Nov 10 at 1:58
Can u provide the exact code
– Kandan Siva
Nov 10 at 1:58
System.out.println(list_options.get(i).getId());
– Lucas Tierney
Nov 10 at 3:19
System.out.println(list_options.get(i).getId());
– Lucas Tierney
Nov 10 at 3:19
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53234816%2fselenium-webdriver-select-getoptions-method%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown