- karthikp_17
- Posts : 3
Join date : 2011-08-19
Selenium to Oracle connectivity.
Mon Aug 29, 2011 3:56 pm
Hi Everyone,
we have a question that can we connect selenium to oracle connectivity.
Please let me know. please send me the code for the select statement operation.
do we need any drivers for the oracle connectivity.
we have tried with this code.
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import com.thoughtworks.selenium.DefaultSelenium;
public class oracle_connectivity {
public static void main(String[] args) throws Exception {
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","scott","tiger");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select * from student");
while(rs.next())
{
DefaultSelenium selenium=new DefaultSelenium("localhost",4447,"*firefox","http://");
selenium.start();
selenium.open("con");
selenium.windowMaximize();
}
rs.close();
}
catch (Exception e){
e.printStackTrace();
}
}
}
please mail to me at karthikp_17@yahoo.com.
Thanks and regards
Karthik
we have a question that can we connect selenium to oracle connectivity.
Please let me know. please send me the code for the select statement operation.
do we need any drivers for the oracle connectivity.
we have tried with this code.
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import com.thoughtworks.selenium.DefaultSelenium;
public class oracle_connectivity {
public static void main(String[] args) throws Exception {
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","scott","tiger");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select * from student");
while(rs.next())
{
DefaultSelenium selenium=new DefaultSelenium("localhost",4447,"*firefox","http://");
selenium.start();
selenium.open("con");
selenium.windowMaximize();
}
rs.close();
}
catch (Exception e){
e.printStackTrace();
}
}
}
please mail to me at karthikp_17@yahoo.com.
Thanks and regards
Karthik
- What is the use of Selenium Core and Selenium Test Manager ? (N-Unit Procedures in VS 2010)
- Creating detail log for selenium command execution (Selenium RC Java client)?
- Is selenium supports Application built on Oracle d2k forms?
- [Help] Problem of running selenium Testcase[Java Junit] with Selenium RC
- Can Selenium do image comparison tests; support mobile browsers; and other FAQs about Selenium
Permissions in this forum:
You cannot reply to topics in this forum