1

I'm writing a script for test automation which requires checking the back-end SQL database in the SQL Developer. Is it possible that I do this through selenium? Selenium is a web automation..

If not, I can do this through java, right?

4

3 回答 3

3

Selenium is only used for web browser it open web site in browser and record only website, it does not used for desktop application for desktop application you will be used Java or QTP.

于 2012-12-11T04:22:18.570 回答
1

I dont think selenium can open desktop applications. It can only open browser depending on the input variable. You need to do it in java.

于 2012-12-10T21:20:49.470 回答
1

If you are using java with selenium you can use :

Runtime.getRuntime().exec("//path to ur application")

Now further if that application has UI that you can get control on that using tools like Autoit.

于 2012-12-11T04:33:47.787 回答