[wtr-general] Re: Watir work with java editor

2009-07-12 Thread khaja shaik
Hi

Yes in our product, javaeditor was already implemented and i need to enter
the text using editor.

can is there any way to automate this process.

Thanks,
Khaja Shariff


On 7/11/09, Chuck van der Linden sqa...@gmail.com wrote:


 Are you talking about something implemented via the browser?  (e.g. an
 editor written in java) or something optimized for editing javascript
 and html code?


 On Jul 9, 6:04 am, khaja shaik khaja.sh...@gmail.com wrote:
  *Watir work with java editor*
 
  HI all,
 
  i have to automate : to enter the text in java editor (HTML editor)
 
  is it possible with watir
 
  Thanks,
  Khaja shariff
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Watir work with java editor

2009-07-12 Thread Wesley Chen
You may try netbeans. It is really good.

Thanks.
Wesley Chen.


On Sun, Jul 12, 2009 at 2:40 PM, khaja shaik khaja.sh...@gmail.com wrote:

 Hi

 Yes in our product, javaeditor was already implemented and i need to enter
 the text using editor.

 can is there any way to automate this process.

 Thanks,
 Khaja Shariff


 On 7/11/09, Chuck van der Linden sqa...@gmail.com wrote:


 Are you talking about something implemented via the browser?  (e.g. an
 editor written in java) or something optimized for editing javascript
 and html code?


 On Jul 9, 6:04 am, khaja shaik khaja.sh...@gmail.com wrote:
  *Watir work with java editor*
 
  HI all,
 
  i have to automate : to enter the text in java editor (HTML editor)
 
  is it possible with watir
 
  Thanks,
  Khaja shariff 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Watir work with java editor

2009-07-12 Thread Jared Quinert

You may be looking for this:

http://www.quinert.com/blog/index.php?itemid=49

Jared


khaja shaik wrote:
 Hi
  
 Yes in our product, javaeditor was already implemented and i need to 
 enter the text using editor.
  
 can is there any way to automate this process.
  
 Thanks,
 Khaja Shariff

  
 On 7/11/09, *Chuck van der Linden* sqa...@gmail.com 
 mailto:sqa...@gmail.com wrote:


 Are you talking about something implemented via the browser?  (e.g. an
 editor written in java) or something optimized for editing javascript
 and html code?


 On Jul 9, 6:04 am, khaja shaik khaja.sh...@gmail.com
 mailto:khaja.sh...@gmail.com wrote:
  *Watir work with java editor*
 
  HI all,
 
  i have to automate : to enter the text in java editor (HTML editor)
 
  is it possible with watir
 
  Thanks,
  Khaja shariff

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Watir + Cruise Control

2009-07-12 Thread Zhimin


http://www.itest2.com/articles/2009/03/22/setup-continuous-build-server-to-include-acceptance-tests/

It uses ci_reporter as well.

Zhimin
http://www.itest2.com

On Jul 10, 3:58 am, Dylan mej...@gmail.com wrote:
 Does anyone know of a good tutorial/step-by-step instructions for how
 to integrate watir/ruby into a cruise control build cycle. I have 1
 xml output file (from ci_reporter) and I want my script to run after
 the build and then integrate the xml results into the cruise control
 output. Thanks!

 -Dylan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Watir + Cruise Control

2009-07-12 Thread pallavi shashidhar
Hi there,
We have used cruise control to run our test suites.
We have structured our test scripts with certain conventions.

1) We have an ERP suite which has different watir scripts for different
projects. each set is developed and maintained by different testers.

2) All of us follow this. - we have a folder called *regression* where all
our test case ruby files are stored in there. Each testcase file is named as
*test_*filename.rb.

Each test case class name starts with PROJECTNAME_TC_CLASSNAME. We use
TEST::UNIT framework.
Using Watir::TestCase did not solve the problem of determining the order of
execution. So we instead used PROJECTNAME in the class name so that all
those testcases under that project will be executed as one set after which
other scripts of another PROJECT is run. Does not matter which PROJECT is
run first as long as the whole set is run.

3) Along with regression as a folder, we also have *common* as another
folder where our common files like utils and constants are placed there

4) On cruise control, on top of all the PROJECT folders, we have a *setup.rb
* file which is a simple ruby file with one line -
which does the foll:
require' all those testcases under regression folder starting with test_*

this will get all the scripts grouped by PROJECTNAME class.

5) In Cruise control build file, have set up the ant target as run.watir
which runs *setup.rb*
Before we started using PROJECTNAME in the class name, all the testcase
scripts in different projects were getting jumbled up
and hence the name.

6) We are using ci_reporter for results and publising the results by sending
a mail (emailtarget is set in cruise control config.xml)
and we give the CC dashboard link in the mail to view the results.

Regards,
Pallavi


On Mon, Jul 13, 2009 at 5:57 AM, Zhimin zhiminz...@gmail.com wrote:




 http://www.itest2.com/articles/2009/03/22/setup-continuous-build-server-to-include-acceptance-tests/

 It uses ci_reporter as well.

 Zhimin
 http://www.itest2.com

 On Jul 10, 3:58 am, Dylan mej...@gmail.com wrote:
  Does anyone know of a good tutorial/step-by-step instructions for how
  to integrate watir/ruby into a cruise control build cycle. I have 1
  xml output file (from ci_reporter) and I want my script to run after
  the build and then integrate the xml results into the cruise control
  output. Thanks!
 
  -Dylan
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---