- nsaumini
- Posts : 1
Join date : 2012-03-30
Export Test cases as Java Junit4 - Web Dirver
Fri Mar 30, 2012 1:26 pm
Hi
Using Selenium IDE can export to java source code.
How can I generate java source code programmatically using selenium API?
Thankx in advance
Using Selenium IDE can export to java source code.
How can I generate java source code programmatically using selenium API?
Thankx in advance
- freeskyAmateur
- Posts : 72
Join date : 2011-04-13
Re: Export Test cases as Java Junit4 - Web Dirver
Wed Apr 18, 2012 4:45 pm
i also have this requirement. i wanted to generate java source code programmatically base on existing tool, unfortunately, i haven't found yet.
maybe we should generate selenium step first, then generate java file, e.g. the selenium step is : click a. the header of java source code is :
"import com.thoughtworks.selenium.*;\n" + ......
and the footer of java source code is : "@After\n" + "public void tearDown() throws Exception {\n" + "\tselenium.stop();\n" + "\tserver.stop();\n" + "}\n";.
and the selenium content is 'click a'.
then combine the header+content+footer to generate java file.
if you have better solution, please let me know, Thanks!
maybe we should generate selenium step first, then generate java file, e.g. the selenium step is : click a. the header of java source code is :
"import com.thoughtworks.selenium.*;\n" + ......
and the footer of java source code is : "@After\n" + "public void tearDown() throws Exception {\n" + "\tselenium.stop();\n" + "\tserver.stop();\n" + "}\n";.
and the selenium content is 'click a'.
then combine the header+content+footer to generate java file.
if you have better solution, please let me know, Thanks!
Permissions in this forum:
You cannot reply to topics in this forum