Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
nmdhidayath
Posts : 1
Join date : 2012-09-11

Select drop down value in Selenium RC Empty Select drop down value in Selenium RC

Tue Sep 11, 2012 12:52 pm
Hi,

Can anyone pls. let me know how to get the value from the select drop down in Selenium RC using IE.

Select drop down has the "name" attribute. Eg. selenium.select("name=paysFG", "label=FRAN");

The above example has the select drop down with the name "paysFG" and the value as "FRAN"

I need to get the value "FRAN" and assign to a variable (using java) during run time.



Thanks.
avatar
Mahi_Selenium
Posts : 2
Join date : 2012-08-24

Select drop down value in Selenium RC Empty select Drop down value using Selenium RC

Tue Sep 11, 2012 11:41 pm
Hi can you try with below code.Definitely it will helps you.
Enter the drop down value to be select while running the below script.

import java.io.BufferedReader;
import java.io.InputStreamReader;

import com.thoughtworks.selenium.DefaultSelenium;
public class seleniumRC_selectdropdownvalue{
public static void functionCall(String option) throws Exception
{
DefaultSelenium selenium=new DefaultSelenium("localhost",4444,"*iexplore","http://");
selenium.start();
selenium.open("http://www.quikr.com");
selenium.windowMaximize();
try{
selenium.select("categoryId",option);
System.out.println("Selected Value is: "+option);
}
catch(Exception e){
System.out.println(e);
}
}
public static void main(String[] args) throws Exception{
System.out.println("Enter drop down value to select:");
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();
functionCall(str);
}
}
Let me know if you have any problem again with the above code.
Thanks,
MahendraP
Back to top
Permissions in this forum:
You cannot reply to topics in this forum