Re: [wtr-general] Re: Managing multiple version of Watir

2011-04-04 Thread Ethan
you know, you can just choose which gem version to activate within ruby.

require 'rubygems'
gem 'watir', '1.6.2'
require 'watir' # rubygems will only require v1.6.2.

then you can have as many versions of the watir gem installed simultaneously
as you want, and switch between them by changing, say, a yaml config file
(and doing: gem('watir', loaded_yaml_config_hash['version']). or something)

rvm's gemsets would work but are slight overkill, and rvm isn't an option on
windows. managing your entire ruby + gems in a git repo is way overkill.

On Mon, Apr 4, 2011 at 22:24, Darryl Brown  wrote:

> Hi,
>
> Thanks for your reply,  Yes, it is way overkill for managing gems. It
> works but it's slow when changing branches,  I'm planning to checkout
> RVM and Bundler as soon as I can.
>
> Darryl
>
> On Apr 4, 4:16 pm, Jarmo Pertman  wrote:
> > If you're versioning your ruby directory then it makes sense that it
> > works of course. It just seems like a pretty much overkill to do that.
> > I'd still recommend using other approaches :)
> >
> > Jarmo Pertman
> > -
> > IT does really matter -http://www.itreallymatters.net
> >
> > On Apr 2, 5:40 pm, Darryl Brown  wrote:
> >
> > > Hi Jarmo,
> >
> > > Thanks for your reply.  I will simply say that it does work like that.
> > > I am using git to manage the entire ruby directory - so Ruby Gems
> > > directory is included.  I will explain it in very basic terms using
> > > three files in the example below.  Imagine that rooby = ruby.  Note
> > > that the branches are totally independent.  Also note that 'git merge'
> > > is never used.  The master branch contains readme.txt only.  The v162
> > > branch contains readme.txt and has a file - watir.txt with "I am 162"
> > > as its' contents.  The v170 branch contains readme.txt and has a file
> > > - watir.txt with "I am 170" as its' contents. Now if I checkout branch
> > > v162, there is no notion of  the latest version - "I am 170".  Please
> > > note that each "version" is installed on its' own branch.   If I had
> > > merged these branches back into master, then what you are saying would
> > > definitely be true.   So, in this manner, I never need to change my
> > > scripts to point to a specific version of Watir. I think that this
> > > behavior mimics managing gem sets with RVM.
> >
> > > C:\>mkdir rooby
> >
> > > C:\>cd rooby
> >
> > > C:\rooby>git init
> > > Initialized empty Git repository in C:/rooby/.git/
> >
> > > C:\rooby> echo This is rooby > readme.txt
> >
> > > C:\rooby>git add readme.txt
> >
> > > C:\rooby>git commit -m"add readme"
> > > [master (root-commit) 57f48df] add readme
> > >  1 files changed, 1 insertions(+), 0 deletions(-)
> > >  create mode 100644 readme.txt
> >
> > > C:\rooby>git checkout -b v162
> > > Switched to a new branch 'v162'
> >
> > > C:\rooby>echo I am 162 > watir.txt
> >
> > > C:\rooby>git add watir.txt
> >
> > > C:\rooby>git commit -m"add watir 162"
> > > [v162 50fae75] add watir 162
> > >  1 files changed, 1 insertions(+), 0 deletions(-)
> > >  create mode 100644 watir.txt
> >
> > > C:\rooby>git checkout master
> > > Switched to branch 'master'
> >
> > > C:\rooby>git checkout -b v170
> > > Switched to a new branch 'v170'
> >
> > > C:\rooby> echo I am 170 > watir.txt
> >
> > > C:\rooby>git add watir.txt
> >
> > > C:\rooby>git commit -m"add watir 170"
> > > [v170 e8ebd80] add watir 170
> > >  1 files changed, 1 insertions(+), 0 deletions(-)
> > >  create mode 100644 watir.txt
> >
> > > C:\rooby>git checkout master
> > > Switched to branch 'master'
> >
> > > C:\rooby>git branch
> > > * master
> > >   v162
> > >   v170
> >
> > > C:\rooby>dir watir.txt
> > >  Volume in drive C has no label.
> > >  Volume Serial Number is C0EA-646B
> >
> > >  Directory of C:\rooby
> >
> > > File Not Found
> >
> > > C:\rooby>
> >
> > > C:\rooby>git checkout v162
> > > Switched to branch 'v162'
> >
> > > C:\rooby>type watir.txt
> > > I am 162
> >
> > > C:\rooby>git checkout v170
> > > Switched to branch 'v170'
> >
> > > C:\rooby>type watir.txt
> > > I am 170
> >
> > > C:\rooby>
> >
> > > Yes, I could specify the specific versions in the require statement as
> > > Dmitriy suggested and I have done it that way in the past. The end
> > > result here using git is the "appearance" of two Ruby complete
> > > installations - one with Watir V1.6.2 and one with Watir v1.7.0
> >
> > > Thanks again - I think that you did not realize that git is managing
> > > the entire ruby installation.  Please let me know if you understand
> > > now.
> >
> > > Regards,
> > > Darryl
> >
> > > On Apr 2, 7:34 am, Jarmo Pertman  wrote:
> >
> > > > Hi!
> >
> > > > I don't understand how your current solution works? It doesn't work
> > > > like that. As soon as you install newer version of Watir then it will
> > > > be used and it doesn't matter which branch you're with your git since
> > > > gem will be loaded from the Ruby gems directory and hasn't anything
> to
> > > > do with your git branch. So, even if you checkout older branch, th

[wtr-general] Re: Managing multiple version of Watir

2011-04-04 Thread Darryl Brown
Hi,

Thanks for your reply,  Yes, it is way overkill for managing gems. It
works but it's slow when changing branches,  I'm planning to checkout
RVM and Bundler as soon as I can.

Darryl

On Apr 4, 4:16 pm, Jarmo Pertman  wrote:
> If you're versioning your ruby directory then it makes sense that it
> works of course. It just seems like a pretty much overkill to do that.
> I'd still recommend using other approaches :)
>
> Jarmo Pertman
> -
> IT does really matter -http://www.itreallymatters.net
>
> On Apr 2, 5:40 pm, Darryl Brown  wrote:
>
> > Hi Jarmo,
>
> > Thanks for your reply.  I will simply say that it does work like that.
> > I am using git to manage the entire ruby directory - so Ruby Gems
> > directory is included.  I will explain it in very basic terms using
> > three files in the example below.  Imagine that rooby = ruby.  Note
> > that the branches are totally independent.  Also note that 'git merge'
> > is never used.  The master branch contains readme.txt only.  The v162
> > branch contains readme.txt and has a file - watir.txt with "I am 162"
> > as its' contents.  The v170 branch contains readme.txt and has a file
> > - watir.txt with "I am 170" as its' contents. Now if I checkout branch
> > v162, there is no notion of  the latest version - "I am 170".  Please
> > note that each "version" is installed on its' own branch.   If I had
> > merged these branches back into master, then what you are saying would
> > definitely be true.   So, in this manner, I never need to change my
> > scripts to point to a specific version of Watir. I think that this
> > behavior mimics managing gem sets with RVM.
>
> > C:\>mkdir rooby
>
> > C:\>cd rooby
>
> > C:\rooby>git init
> > Initialized empty Git repository in C:/rooby/.git/
>
> > C:\rooby> echo This is rooby > readme.txt
>
> > C:\rooby>git add readme.txt
>
> > C:\rooby>git commit -m"add readme"
> > [master (root-commit) 57f48df] add readme
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> >  create mode 100644 readme.txt
>
> > C:\rooby>git checkout -b v162
> > Switched to a new branch 'v162'
>
> > C:\rooby>echo I am 162 > watir.txt
>
> > C:\rooby>git add watir.txt
>
> > C:\rooby>git commit -m"add watir 162"
> > [v162 50fae75] add watir 162
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> >  create mode 100644 watir.txt
>
> > C:\rooby>git checkout master
> > Switched to branch 'master'
>
> > C:\rooby>git checkout -b v170
> > Switched to a new branch 'v170'
>
> > C:\rooby> echo I am 170 > watir.txt
>
> > C:\rooby>git add watir.txt
>
> > C:\rooby>git commit -m"add watir 170"
> > [v170 e8ebd80] add watir 170
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> >  create mode 100644 watir.txt
>
> > C:\rooby>git checkout master
> > Switched to branch 'master'
>
> > C:\rooby>git branch
> > * master
> >   v162
> >   v170
>
> > C:\rooby>dir watir.txt
> >  Volume in drive C has no label.
> >  Volume Serial Number is C0EA-646B
>
> >  Directory of C:\rooby
>
> > File Not Found
>
> > C:\rooby>
>
> > C:\rooby>git checkout v162
> > Switched to branch 'v162'
>
> > C:\rooby>type watir.txt
> > I am 162
>
> > C:\rooby>git checkout v170
> > Switched to branch 'v170'
>
> > C:\rooby>type watir.txt
> > I am 170
>
> > C:\rooby>
>
> > Yes, I could specify the specific versions in the require statement as
> > Dmitriy suggested and I have done it that way in the past. The end
> > result here using git is the "appearance" of two Ruby complete
> > installations - one with Watir V1.6.2 and one with Watir v1.7.0
>
> > Thanks again - I think that you did not realize that git is managing
> > the entire ruby installation.  Please let me know if you understand
> > now.
>
> > Regards,
> > Darryl
>
> > On Apr 2, 7:34 am, Jarmo Pertman  wrote:
>
> > > Hi!
>
> > > I don't understand how your current solution works? It doesn't work
> > > like that. As soon as you install newer version of Watir then it will
> > > be used and it doesn't matter which branch you're with your git since
> > > gem will be loaded from the Ruby gems directory and hasn't anything to
> > > do with your git branch. So, even if you checkout older branch, then
> > > you're still using newest Watir version.
>
> > > You could specify the exact version of Watir as Dmitriy already
> > > suggested like this.
>
> > > Instead of:
> > > require 'watir'
>
> > > use:
> > > gem "watir", "1.6.2" # to use 1.6.2
>
> > > Now, if you commit that change into your branch, then you can be sure
> > > that correct version is used.
>
> > > Or you could use Bundler to take care of the correct versions of your
> > > gems:http://gembundler.com/
>
> > > Just don't forget to commit Gemfile and Gemfile.lock into your
> > > repository :)
>
> > > Jarmo Pertman
> > > -
> > > IT does really matter -http://www.itreallymatters.net
>
> > > On Mar 31, 5:16 am, Darryl Brown  wrote:
>
> > > > Thanks again for everyone's response but what I'm doing is sufficient
> > > > for my needs.  I was curious to see how (or if) anyone else was doing

[wtr-general] Re: Java Developer - Technical/Product Job Opening - NYC,NY

2011-04-04 Thread Chuck van der Linden
Thanks guys (for nuking this clown).

Hey folks want a laugh, when I'm job hunting I LOVE seeing postings
from idiot recruiters like that one.  You know why? because he re-
posted requirements straight from his client without sanitizing them!
Take a moment to read the posting and notice this part

"•Unwavering commitment to Liquidnet’s Core Values "

We lookie there. Guess we know where the job is don't we?   bit of
googling and I'll bet any enterprising job seeker can find the
position up on the Liquidnet's website.  approach them directly, make
it look like you were researching the company and are really
interested etc.. and you might well blow right past one potential gate-
keeper.. maybe even get your resume in ahead of the worthless
'recruiter' who's not doing anything more to earn his keep than send
out spam.  And without the recruiter in there taking out a bite, you
might even be able to negotiate a higher salary.

Job seekers, you not only have the ability to end run clowns like this
guy, it's your obligation as part of the Darwinian process to do so.
For the good of us all we need morons like this out of the recruitment
business 'genepool' and back to saying 'Welcome to Walmart' or 'would
you like fries with that'.  If they can't be bothered to edit the job
requirements, and all they do to find people is indiscriminate
spamming of newsgroups, we need them OUT.

On Apr 4, 12:41 pm, Charley Baker  wrote:
> Done. This spam has no relevance to this group.
>
> Charley Baker
> Lead Developer, Watir,http://watir.com
>
>
>
>
>
>
>
> On Mon, Apr 4, 2011 at 11:57 AM, Adam Reed  wrote:
> > I don't mind these every once in a while but this is the third I've
> > received today.  I have changed my stance on the topic to "nuke
> > without remorse".
>
> > On Apr 4, 1:54 pm, Basim Baassiri  wrote:
> > > seriously, this is not a watir related question
>
> > > Please can you stop
>
> > > Thanks
>
> > > Basim
>
> > > On Mon, Apr 4, 2011 at 1:12 PM, Makro Tech 
> > wrote:
> > > > Hi Dear Candidate,
>
> > > > This is Vignesh with Makro Technologies, Inc.
>
> > > > We have been in business for over 10 years and we are one of the Fast
> > 500
> > > > National IT staffing and Solution firms in USA. Our clients include
> > > > country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
> > > > Telecom,Government and other industries.
>
> > > > Staying current with technology, finding great consultants and
> > exceeding
> > > > our clients' expectations are our primary objectives.  Thanks for your
> > time
> > > > and attention to this e-mail.  Please let me know if you have any
> > candidates
> > > > available, please find the Job description as mentioned below.
>
> > > > *Job Titile: Java Developer - Technical/Product
> > > > Duration: 1 Year Contract
> > > > Location: NYC, NY*
>
> > > > *Job Description:*
> > > > • Development of projects supporting commission management tools.
> > > > • Key responsibilities include development, testing, implementation,
> > and
> > > > support.
> > > > • Key member who is part of the team that is involved in continuous
> > > > improvement of processes, product development, product quality and
> > > > technology
> > > > • Successful candidate would take ownership of one of the key parts of
> > > > application Skills
> > > > • Highly experienced Java developer, with 4+ years of experience
> > building
> > > > multi-tier applications
> > > > • Comfortable working on agile development projects, with frequent
> > delivery
> > > > of small incremental improvements
> > > > • Strong web development skills, including expertise in using
> > JavaScript
> > > > and HTML.
> > > > • Basic proficiency in Linux
> > > > • Proven ability to communicate effectively at all organizational
> > levels.
> > > > Excellent listening, written, analytical, strategic and verbal
> > communication
> > > > skills.
> > > > • Demonstrated development skills in a collaborative, team oriented
> > style.
> > > > • Unwavering commitment to Liquidnet’s Core Values
> > > > • Strategic thinking and problem solving skills.
> > > > • Preferred Qualifications/Skills
> > > > • Experience with and knowledge of commission management products and
> > > > instruments
> > > > • Experience with Oracle, including PL/SQL
> > > > • Experience building applications with Grails and Groovy
> > > > Thanks
> > > > *Vignesh
> > > > *Sr Talent Acquisation Consulant
> > > > Tel: 973-481-0100  Ext: 3069
> > > > Fax: 973 883 1488
> > > > Email: vignesh.renik...@makrohealth.com
>
> > > > *Linkedin: **http://www.linkedin.com/in/vignesh1*<
> >http://www.linkedin.com/in/vignesh1>
> > > >  *For current openings please visit
> > > > *http://jobs.makrotech.com/searchjobs.aspx
> > > > *
> > > > **Makro Technologies Inc.*
> > > >www.makrotech.com
> > > > Corporate Headquarters: New Jersey
> > > > One Washington Park, Suite 1502, Newark, NJ 07102
> > > > *Other Offices:* Pennsylvania, Illinois, California
>
> > > > ** Makro is a 3-time INC 5000 company 

[wtr-general] Re: Compare HTML with HTML in a file

2011-04-04 Thread dt_nz
for anyone who is inrested, I just found I should be using Nokogiri
(http://nokogiri.org/Nokogiri.html)

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: firewatir installation failure on Ubuntu Server 10.10 x64

2011-04-04 Thread wkharold
Per another thread try:

$sudo gem update --system 1.6.2
$sudo gem install firewatir --no-ri

Worked for me ... WkH

On Apr 3, 2:40 pm, hookdump  wrote:
> I'm sorry for asking such a noob question, but how do you switch to
> rubygems 1.6.2 ?
> (I'm using Ubuntu 10.04, which is almost the same as 10.10)
>
> On 3 abr, 08:01, Thomas Metschke  wrote:
>
>
>
>
>
>
>
> > I went back to rubygems 1.6.2 this solved the problem for me
>
> > On Apr 2, 8:07 pm, wkharold  wrote:
>
> > > When I attempt to install firewatir on my 10.10 x64 server box (ruby
> > > 1.8.7/rubygems 1.7.1) I get:
>
> > > $ sudo gem install firewatir
> > > Fetching: xml-simple-1.0.15.gem (100%)
> > > Fetching: rake-0.8.7.gem (100%)
> > > Fetching: hoe-2.9.4.gem (100%)
> > > ERROR:  While executing gem ... (Gem::FormatException)
> > >     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> > > Going to  /usr/lib/ruby/gems/1.8/gems/s4t-utils-1.0.4 and running ruby
> > > setup.rb installs the s4t-utuils stuff but gem doesn't know about it
> > > so the next attempt to install firewatir fails in the same way.
>
> > > Spent most of yesterday afternoon googling for a solution but came up
> > > empty.
>
> > > Has anyone ever run across this?
>
> > > ... WkH

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Compare HTML with HTML in a file

2011-04-04 Thread dt_nz
Am using the imap class as part of my watir tests, but yes, will try
the general group.

Ta.

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Install fails: "s4t-utils-1.0.4 has an invalid value for @cert_chain"

2011-04-04 Thread Abe Heward
We finally got the downgrade to work.

On Apr 4, 2:00 pm, sridhar  wrote:
> downgrading worked for me...Thanks!
>
> I tried downgrading using the command
> gem update --system 1.6.2
>
> On Apr 4, 2:22 pm, Ben Carter  wrote:
>
> > We were still not successful with downgrading:
>
> > *** LOCAL GEMS ***
>
> > rake (0.8.7)
> > rubygems-update (1.6.2)
> > win32-api (1.4.8 x86-mingw32)
> > win32-process (0.6.5)
> > windows-api (0.4.0)
> > windows-pr (1.2.0)
> > xml-simple (1.0.15)
>
> > C:\Users\Ben>gem install watir
> > Fetching: s4t-utils-1.0.4.gem (100%)
> > ERROR:  While executing gem ... (Gem::FormatException)
> >     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> > On Apr 4, 3:36 pm, Charley Baker  wrote:
>
> > > Looks like this is a rubygems problem with 1.7.1, downgrade to an earlier
> > > version.
>
> > > gem update --system 1.6.2
>
> > > Charley Baker
> > > Lead Developer, Watir,http://watir.com
>
> > > On Mon, Apr 4, 2011 at 10:29 AM, sridhar  wrote:
> > > > Hey I have the same problem. Please let me know if you find a solution
> > > > for it. Thanks!
>
> > > > On Apr 4, 6:29 am, Uri Goldstein  wrote:
> > > > > Hello,
>
> > > > > I am new to Watir. My first installation of Watir seems to have 
> > > > > failed.
> > > > Upon
> > > > > running "gem install watir" I get:
>
> > > > > Fetching: win32-api-1.4.8-x86-mingw32.gem (100%)
> > > > > Fetching: windows-api-0.4.0.gem (100%)
> > > > > Fetching: windows-pr-1.2.0.gem (100%)
> > > > > Fetching: win32-process-0.6.5.gem (100%)
> > > > > Fetching: xml-simple-1.0.15.gem (100%)
> > > > > Fetching: hoe-2.9.4.gem (100%)
> > > > > Fetching: s4t-utils-1.0.4.gem (100%)
> > > > > ERROR:  While executing gem ... (Gem::FormatException)
> > > > >     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> > > > > This is on Windows 7 Ultimate SP1 64-bit running Ruby 1.9.2-p180 with
> > > > ruby
> > > > > gems 1.7.1. And just in case it's related - FireFox 4.0.
>
> > > > > Can I still use Watir? How can I fix this?
>
> > > > > Thanks,
> > > > > Uri Goldstein
>
> > > > --
> > > > Before posting, please readhttp://watir.com/support. In short: search
> > > > before you ask, be nice.
>
> > > > watir-general@googlegroups.com
> > > >http://groups.google.com/group/watir-general
> > > > watir-general+unsubscr...@googlegroups.com

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Install fails: "s4t-utils-1.0.4 has an invalid value for @cert_chain"

2011-04-04 Thread sridhar
downgrading worked for me...Thanks!

I tried downgrading using the command
gem update --system 1.6.2

On Apr 4, 2:22 pm, Ben Carter  wrote:
> We were still not successful with downgrading:
>
> *** LOCAL GEMS ***
>
> rake (0.8.7)
> rubygems-update (1.6.2)
> win32-api (1.4.8 x86-mingw32)
> win32-process (0.6.5)
> windows-api (0.4.0)
> windows-pr (1.2.0)
> xml-simple (1.0.15)
>
> C:\Users\Ben>gem install watir
> Fetching: s4t-utils-1.0.4.gem (100%)
> ERROR:  While executing gem ... (Gem::FormatException)
>     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> On Apr 4, 3:36 pm, Charley Baker  wrote:
>
>
>
>
>
>
>
> > Looks like this is a rubygems problem with 1.7.1, downgrade to an earlier
> > version.
>
> > gem update --system 1.6.2
>
> > Charley Baker
> > Lead Developer, Watir,http://watir.com
>
> > On Mon, Apr 4, 2011 at 10:29 AM, sridhar  wrote:
> > > Hey I have the same problem. Please let me know if you find a solution
> > > for it. Thanks!
>
> > > On Apr 4, 6:29 am, Uri Goldstein  wrote:
> > > > Hello,
>
> > > > I am new to Watir. My first installation of Watir seems to have failed.
> > > Upon
> > > > running "gem install watir" I get:
>
> > > > Fetching: win32-api-1.4.8-x86-mingw32.gem (100%)
> > > > Fetching: windows-api-0.4.0.gem (100%)
> > > > Fetching: windows-pr-1.2.0.gem (100%)
> > > > Fetching: win32-process-0.6.5.gem (100%)
> > > > Fetching: xml-simple-1.0.15.gem (100%)
> > > > Fetching: hoe-2.9.4.gem (100%)
> > > > Fetching: s4t-utils-1.0.4.gem (100%)
> > > > ERROR:  While executing gem ... (Gem::FormatException)
> > > >     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> > > > This is on Windows 7 Ultimate SP1 64-bit running Ruby 1.9.2-p180 with
> > > ruby
> > > > gems 1.7.1. And just in case it's related - FireFox 4.0.
>
> > > > Can I still use Watir? How can I fix this?
>
> > > > Thanks,
> > > > Uri Goldstein
>
> > > --
> > > Before posting, please readhttp://watir.com/support. In short: search
> > > before you ask, be nice.
>
> > > watir-general@googlegroups.com
> > >http://groups.google.com/group/watir-general
> > > watir-general+unsubscr...@googlegroups.com

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: .Net Developer Job Opening - Valencia, CA

2011-04-04 Thread Željko Filipin
On Mon, Apr 4, 2011 at 7:29 AM, Chuck van der Linden 
wrote:
> I vote nuke and ban..

I just tried to ban him from the group and I saw Charlie already did it.
Sorry it took us so long, we are on a conference. :)

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Install fails: "s4t-utils-1.0.4 has an invalid value for @cert_chain"

2011-04-04 Thread Ben Carter
We were still not successful with downgrading:

*** LOCAL GEMS ***

rake (0.8.7)
rubygems-update (1.6.2)
win32-api (1.4.8 x86-mingw32)
win32-process (0.6.5)
windows-api (0.4.0)
windows-pr (1.2.0)
xml-simple (1.0.15)

C:\Users\Ben>gem install watir
Fetching: s4t-utils-1.0.4.gem (100%)
ERROR:  While executing gem ... (Gem::FormatException)
s4t-utils-1.0.4 has an invalid value for @cert_chain



On Apr 4, 3:36 pm, Charley Baker  wrote:
> Looks like this is a rubygems problem with 1.7.1, downgrade to an earlier
> version.
>
> gem update --system 1.6.2
>
> Charley Baker
> Lead Developer, Watir,http://watir.com
>
> On Mon, Apr 4, 2011 at 10:29 AM, sridhar  wrote:
> > Hey I have the same problem. Please let me know if you find a solution
> > for it. Thanks!
>
> > On Apr 4, 6:29 am, Uri Goldstein  wrote:
> > > Hello,
>
> > > I am new to Watir. My first installation of Watir seems to have failed.
> > Upon
> > > running "gem install watir" I get:
>
> > > Fetching: win32-api-1.4.8-x86-mingw32.gem (100%)
> > > Fetching: windows-api-0.4.0.gem (100%)
> > > Fetching: windows-pr-1.2.0.gem (100%)
> > > Fetching: win32-process-0.6.5.gem (100%)
> > > Fetching: xml-simple-1.0.15.gem (100%)
> > > Fetching: hoe-2.9.4.gem (100%)
> > > Fetching: s4t-utils-1.0.4.gem (100%)
> > > ERROR:  While executing gem ... (Gem::FormatException)
> > >     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> > > This is on Windows 7 Ultimate SP1 64-bit running Ruby 1.9.2-p180 with
> > ruby
> > > gems 1.7.1. And just in case it's related - FireFox 4.0.
>
> > > Can I still use Watir? How can I fix this?
>
> > > Thanks,
> > > Uri Goldstein
>
> > --
> > Before posting, please readhttp://watir.com/support. In short: search
> > before you ask, be nice.
>
> > watir-general@googlegroups.com
> >http://groups.google.com/group/watir-general
> > watir-general+unsubscr...@googlegroups.com

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Managing multiple version of Watir

2011-04-04 Thread Jarmo Pertman
If you're versioning your ruby directory then it makes sense that it
works of course. It just seems like a pretty much overkill to do that.
I'd still recommend using other approaches :)

Jarmo Pertman
-
IT does really matter - http://www.itreallymatters.net

On Apr 2, 5:40 pm, Darryl Brown  wrote:
> Hi Jarmo,
>
> Thanks for your reply.  I will simply say that it does work like that.
> I am using git to manage the entire ruby directory - so Ruby Gems
> directory is included.  I will explain it in very basic terms using
> three files in the example below.  Imagine that rooby = ruby.  Note
> that the branches are totally independent.  Also note that 'git merge'
> is never used.  The master branch contains readme.txt only.  The v162
> branch contains readme.txt and has a file - watir.txt with "I am 162"
> as its' contents.  The v170 branch contains readme.txt and has a file
> - watir.txt with "I am 170" as its' contents. Now if I checkout branch
> v162, there is no notion of  the latest version - "I am 170".  Please
> note that each "version" is installed on its' own branch.   If I had
> merged these branches back into master, then what you are saying would
> definitely be true.   So, in this manner, I never need to change my
> scripts to point to a specific version of Watir. I think that this
> behavior mimics managing gem sets with RVM.
>
> C:\>mkdir rooby
>
> C:\>cd rooby
>
> C:\rooby>git init
> Initialized empty Git repository in C:/rooby/.git/
>
> C:\rooby> echo This is rooby > readme.txt
>
> C:\rooby>git add readme.txt
>
> C:\rooby>git commit -m"add readme"
> [master (root-commit) 57f48df] add readme
>  1 files changed, 1 insertions(+), 0 deletions(-)
>  create mode 100644 readme.txt
>
> C:\rooby>git checkout -b v162
> Switched to a new branch 'v162'
>
> C:\rooby>echo I am 162 > watir.txt
>
> C:\rooby>git add watir.txt
>
> C:\rooby>git commit -m"add watir 162"
> [v162 50fae75] add watir 162
>  1 files changed, 1 insertions(+), 0 deletions(-)
>  create mode 100644 watir.txt
>
> C:\rooby>git checkout master
> Switched to branch 'master'
>
> C:\rooby>git checkout -b v170
> Switched to a new branch 'v170'
>
> C:\rooby> echo I am 170 > watir.txt
>
> C:\rooby>git add watir.txt
>
> C:\rooby>git commit -m"add watir 170"
> [v170 e8ebd80] add watir 170
>  1 files changed, 1 insertions(+), 0 deletions(-)
>  create mode 100644 watir.txt
>
> C:\rooby>git checkout master
> Switched to branch 'master'
>
> C:\rooby>git branch
> * master
>   v162
>   v170
>
> C:\rooby>dir watir.txt
>  Volume in drive C has no label.
>  Volume Serial Number is C0EA-646B
>
>  Directory of C:\rooby
>
> File Not Found
>
> C:\rooby>
>
> C:\rooby>git checkout v162
> Switched to branch 'v162'
>
> C:\rooby>type watir.txt
> I am 162
>
> C:\rooby>git checkout v170
> Switched to branch 'v170'
>
> C:\rooby>type watir.txt
> I am 170
>
> C:\rooby>
>
> Yes, I could specify the specific versions in the require statement as
> Dmitriy suggested and I have done it that way in the past. The end
> result here using git is the "appearance" of two Ruby complete
> installations - one with Watir V1.6.2 and one with Watir v1.7.0
>
> Thanks again - I think that you did not realize that git is managing
> the entire ruby installation.  Please let me know if you understand
> now.
>
> Regards,
> Darryl
>
> On Apr 2, 7:34 am, Jarmo Pertman  wrote:
>
>
>
>
>
>
>
> > Hi!
>
> > I don't understand how your current solution works? It doesn't work
> > like that. As soon as you install newer version of Watir then it will
> > be used and it doesn't matter which branch you're with your git since
> > gem will be loaded from the Ruby gems directory and hasn't anything to
> > do with your git branch. So, even if you checkout older branch, then
> > you're still using newest Watir version.
>
> > You could specify the exact version of Watir as Dmitriy already
> > suggested like this.
>
> > Instead of:
> > require 'watir'
>
> > use:
> > gem "watir", "1.6.2" # to use 1.6.2
>
> > Now, if you commit that change into your branch, then you can be sure
> > that correct version is used.
>
> > Or you could use Bundler to take care of the correct versions of your
> > gems:http://gembundler.com/
>
> > Just don't forget to commit Gemfile and Gemfile.lock into your
> > repository :)
>
> > Jarmo Pertman
> > -
> > IT does really matter -http://www.itreallymatters.net
>
> > On Mar 31, 5:16 am, Darryl Brown  wrote:
>
> > > Thanks again for everyone's response but what I'm doing is sufficient
> > > for my needs.  I was curious to see how (or if) anyone else was doing
> > > this differently.  My needs are to be able to switch between Watir
> > > versions easily. Example: I test one of my scripts on v1.7.0 and it
> > > fails. I switch back to v1.6.2 and run it to see if it's still OK or
> > > if something else is going on.  I don't want to change my scripts
> > > (unless it is explicitly required  - i.e. different watir wait method,
> > > etc.).
>
> > > Generally, this is how I set it up.
>
> > 

[wtr-general] Re: Install fails: "s4t-utils-1.0.4 has an invalid value for @cert_chain"

2011-04-04 Thread Abe Heward
I tried that and am still seeing the problem.

Will try again.

On Apr 4, 12:36 pm, Charley Baker  wrote:
> Looks like this is a rubygems problem with 1.7.1, downgrade to an earlier
> version.
>
> gem update --system 1.6.2
>
> Charley Baker
> Lead Developer, Watir,http://watir.com
>
> On Mon, Apr 4, 2011 at 10:29 AM, sridhar  wrote:
> > Hey I have the same problem. Please let me know if you find a solution
> > for it. Thanks!
>
> > On Apr 4, 6:29 am, Uri Goldstein  wrote:
> > > Hello,
>
> > > I am new to Watir. My first installation of Watir seems to have failed.
> > Upon
> > > running "gem install watir" I get:
>
> > > Fetching: win32-api-1.4.8-x86-mingw32.gem (100%)
> > > Fetching: windows-api-0.4.0.gem (100%)
> > > Fetching: windows-pr-1.2.0.gem (100%)
> > > Fetching: win32-process-0.6.5.gem (100%)
> > > Fetching: xml-simple-1.0.15.gem (100%)
> > > Fetching: hoe-2.9.4.gem (100%)
> > > Fetching: s4t-utils-1.0.4.gem (100%)
> > > ERROR:  While executing gem ... (Gem::FormatException)
> > >     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> > > This is on Windows 7 Ultimate SP1 64-bit running Ruby 1.9.2-p180 with
> > ruby
> > > gems 1.7.1. And just in case it's related - FireFox 4.0.
>
> > > Can I still use Watir? How can I fix this?
>
> > > Thanks,
> > > Uri Goldstein
>
> > --
> > Before posting, please readhttp://watir.com/support. In short: search
> > before you ask, be nice.
>
> > watir-general@googlegroups.com
> >http://groups.google.com/group/watir-general
> > watir-general+unsubscr...@googlegroups.com

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Java Developer - Technical/Product Job Opening - NYC,NY

2011-04-04 Thread Charley Baker
Done. This spam has no relevance to this group.


Charley Baker
Lead Developer, Watir, http://watir.com


On Mon, Apr 4, 2011 at 11:57 AM, Adam Reed  wrote:

> I don't mind these every once in a while but this is the third I've
> received today.  I have changed my stance on the topic to "nuke
> without remorse".
>
> On Apr 4, 1:54 pm, Basim Baassiri  wrote:
> > seriously, this is not a watir related question
> >
> > Please can you stop
> >
> > Thanks
> >
> > Basim
> >
> > On Mon, Apr 4, 2011 at 1:12 PM, Makro Tech 
> wrote:
> > > Hi Dear Candidate,
> >
> > > This is Vignesh with Makro Technologies, Inc.
> >
> > > We have been in business for over 10 years and we are one of the Fast
> 500
> > > National IT staffing and Solution firms in USA. Our clients include
> > > country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
> > > Telecom,Government and other industries.
> >
> > > Staying current with technology, finding great consultants and
> exceeding
> > > our clients' expectations are our primary objectives.  Thanks for your
> time
> > > and attention to this e-mail.  Please let me know if you have any
> candidates
> > > available, please find the Job description as mentioned below.
> >
> > > *Job Titile: Java Developer - Technical/Product
> > > Duration: 1 Year Contract
> > > Location: NYC, NY*
> >
> > > *Job Description:*
> > > • Development of projects supporting commission management tools.
> > > • Key responsibilities include development, testing, implementation,
> and
> > > support.
> > > • Key member who is part of the team that is involved in continuous
> > > improvement of processes, product development, product quality and
> > > technology
> > > • Successful candidate would take ownership of one of the key parts of
> > > application Skills
> > > • Highly experienced Java developer, with 4+ years of experience
> building
> > > multi-tier applications
> > > • Comfortable working on agile development projects, with frequent
> delivery
> > > of small incremental improvements
> > > • Strong web development skills, including expertise in using
> JavaScript
> > > and HTML.
> > > • Basic proficiency in Linux
> > > • Proven ability to communicate effectively at all organizational
> levels.
> > > Excellent listening, written, analytical, strategic and verbal
> communication
> > > skills.
> > > • Demonstrated development skills in a collaborative, team oriented
> style.
> > > • Unwavering commitment to Liquidnet’s Core Values
> > > • Strategic thinking and problem solving skills.
> > > • Preferred Qualifications/Skills
> > > • Experience with and knowledge of commission management products and
> > > instruments
> > > • Experience with Oracle, including PL/SQL
> > > • Experience building applications with Grails and Groovy
> > > Thanks
> > > *Vignesh
> > > *Sr Talent Acquisation Consulant
> > > Tel: 973-481-0100  Ext: 3069
> > > Fax: 973 883 1488
> > > Email: vignesh.renik...@makrohealth.com
> >
> > > *Linkedin: **http://www.linkedin.com/in/vignesh1*<
> http://www.linkedin.com/in/vignesh1>
> > >  *For current openings please visit
> > > *http://jobs.makrotech.com/searchjobs.aspx
> > > *
> > > **Makro Technologies Inc.*
> > >www.makrotech.com
> > > Corporate Headquarters: New Jersey
> > > One Washington Park, Suite 1502, Newark, NJ 07102
> > > *Other Offices:* Pennsylvania, Illinois, California
> >
> > > ** Makro is a 3-time INC 5000 company for 2007/2008/2009
> > > ** Makro is a 3-time FAST 50 firm in NJ for 2005/2006/2007 (by
> Deloitte)
> > > ** Makro is a 3-time FAST 500 firm in USA for 2005/2006/2007 (by
> > > Deloitte)
> >
> > > --
> > > Before posting, please readhttp://watir.com/support. In short: search
> > > before you ask, be nice.
> >
> > > watir-general@googlegroups.com
> > >http://groups.google.com/group/watir-general
> > > watir-general+unsubscr...@googlegroups.com
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> watir-general@googlegroups.com
> http://groups.google.com/group/watir-general
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Install fails: "s4t-utils-1.0.4 has an invalid value for @cert_chain"

2011-04-04 Thread Charley Baker
Looks like this is a rubygems problem with 1.7.1, downgrade to an earlier
version.

gem update --system 1.6.2

Charley Baker
Lead Developer, Watir, http://watir.com


On Mon, Apr 4, 2011 at 10:29 AM, sridhar  wrote:

> Hey I have the same problem. Please let me know if you find a solution
> for it. Thanks!
>
> On Apr 4, 6:29 am, Uri Goldstein  wrote:
> > Hello,
> >
> > I am new to Watir. My first installation of Watir seems to have failed.
> Upon
> > running "gem install watir" I get:
> >
> > Fetching: win32-api-1.4.8-x86-mingw32.gem (100%)
> > Fetching: windows-api-0.4.0.gem (100%)
> > Fetching: windows-pr-1.2.0.gem (100%)
> > Fetching: win32-process-0.6.5.gem (100%)
> > Fetching: xml-simple-1.0.15.gem (100%)
> > Fetching: hoe-2.9.4.gem (100%)
> > Fetching: s4t-utils-1.0.4.gem (100%)
> > ERROR:  While executing gem ... (Gem::FormatException)
> > s4t-utils-1.0.4 has an invalid value for @cert_chain
> >
> > This is on Windows 7 Ultimate SP1 64-bit running Ruby 1.9.2-p180 with
> ruby
> > gems 1.7.1. And just in case it's related - FireFox 4.0.
> >
> > Can I still use Watir? How can I fix this?
> >
> > Thanks,
> > Uri Goldstein
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> watir-general@googlegroups.com
> http://groups.google.com/group/watir-general
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Job Opportunity - Network Engineer - Richmond, VA

2011-04-04 Thread Makro Tech
Hi,



Good Morning! Hope you're doing well.



I'm Venkat, from *MAKRO*. This is with reference to your profile on
internet. We've an urgent requirement with one of our client for "*Network
Engineer*" position in *Richmond, VA*. Please find below the job description
for the same and revert back to me with your updated profile and below
mentioned required details at the earliest.

* *

*Position:* Network Engineer

*Location:* Richmond, VA

*Duration:* 3 Months
*Rate/hr on W2:* DOE

*In-Person Interview Required*



*Description:*

The scope of work is to provide the Network Engineer skills in support of
the ITD Network Management department specially regarding the design,
testing and deployment of virtualized servers.

Design, testing and conversion of existing physical servers to virtualized
servers under VMWare ESX
Installation of patches and upgrades to servers and network devices
Other network administration duties as assigned, installing server and
network equipment and software


*Experience Required;*
8 Years of experience in Windows 2000,2003, 2008 Required
8 Years of experience with MS Exchange Server 2007 Required
2 Years of experience with MS Office Professional 2007 Required
5 Years of experience with Windows Active Directory LDAP, WSUS Required
7 Years of experience with Cisco routers, switches, wireless access points,
ASA firewalls Required
4 Years of experience with Cisco and Citrix VPN Required
8 Years of experience with HP Proliant and Blade Matrix Servers Required
5 Years of experience with VMWare ESX 4.1 Required
8 Years of experience with Storage Area Networks, Direct Attached Storage
Required
8 Years of experience with DS-3 telecommunications, WAN, LAN, VLAN Required



* *

*Please do fill the following details:*

Availability:

Current Location:

Willing to Relocate:

Rate/hr on W2/C2C:

Years of experience as a Network Engineer:



  *Skills*

*Years Used*

*Last Used*

Windows 2000,2003, 2008





MS Exchange Server 2007





MS Office Professional 2007





Windows Active Directory LDAP, WSUS





Cisco routers, switches, wireless access points, ASA firewalls





Cisco and Citrix VPN





HP Proliant and Blade Matrix Servers





VMWare ESX 4.1





Storage Area Networks, Direct Attached Storage





DS-3 telecommunications, WAN, LAN, VLAN








Thanks & Regards,
*Venkat Krishna Potluri*
Sr. Talent Acquisition Consultant
Tel: 973-481-0100 Ext: 3073
Fax: 973-883-1488
krishna.potl...@makrohealth.com
*MAKROTECH*

One Washington Park, Suite 1502, Newark, NJ 07102
Other Offices: Pennsylvania, Illinois, California
www.makrotech.com

** INC 5000 company for 2007/2008/2009
** 3-time Fast 50 firm in NJ, 3-time Fast 500 firm in USA and NJBIZ Finest
firm

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Simulate keystroke with watir-webdriver

2011-04-04 Thread Dan Claudiu Pop
Thank you for your fast reply.
Works just fine.
Bookmarked the link as well.

Dan

On Apr 4, 9:53 pm, Jari Bakken  wrote:
> On Mon, Apr 4, 2011 at 11:46 AM, Dan Claudiu Pop
>
>  wrote:
> > Hello,
>
> > Is there a way to simulate keystroke with watir-webdriver.
> > I know that, recently Jarib pushed send_keys method.
> > Does it simulate keystroke as well ?
> > I've tried all kind of combinations, including ascii, but no success.
> > browser.send_keys('{F11}')
>
> The API is slightly different:
>
>   browser.send_keys :f11
>
> or e.g.
>
>   browser.text_field.send_keys [:control, 'a'], :backspace
>
> You can see the full list of available keys here:http://goo.gl/DTZ9g
>
> Jari

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Java Developer - Technical/Product Job Opening - NYC,NY

2011-04-04 Thread Adam Reed
I don't mind these every once in a while but this is the third I've
received today.  I have changed my stance on the topic to "nuke
without remorse".

On Apr 4, 1:54 pm, Basim Baassiri  wrote:
> seriously, this is not a watir related question
>
> Please can you stop
>
> Thanks
>
> Basim
>
> On Mon, Apr 4, 2011 at 1:12 PM, Makro Tech  wrote:
> > Hi Dear Candidate,
>
> > This is Vignesh with Makro Technologies, Inc.
>
> > We have been in business for over 10 years and we are one of the Fast 500
> > National IT staffing and Solution firms in USA. Our clients include
> > country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
> > Telecom,Government and other industries.
>
> > Staying current with technology, finding great consultants and exceeding
> > our clients' expectations are our primary objectives.  Thanks for your time
> > and attention to this e-mail.  Please let me know if you have any candidates
> > available, please find the Job description as mentioned below.
>
> > *Job Titile: Java Developer - Technical/Product
> > Duration: 1 Year Contract
> > Location: NYC, NY*
>
> > *Job Description:*
> > • Development of projects supporting commission management tools.
> > • Key responsibilities include development, testing, implementation, and
> > support.
> > • Key member who is part of the team that is involved in continuous
> > improvement of processes, product development, product quality and
> > technology
> > • Successful candidate would take ownership of one of the key parts of
> > application Skills
> > • Highly experienced Java developer, with 4+ years of experience building
> > multi-tier applications
> > • Comfortable working on agile development projects, with frequent delivery
> > of small incremental improvements
> > • Strong web development skills, including expertise in using JavaScript
> > and HTML.
> > • Basic proficiency in Linux
> > • Proven ability to communicate effectively at all organizational levels.
> > Excellent listening, written, analytical, strategic and verbal communication
> > skills.
> > • Demonstrated development skills in a collaborative, team oriented style.
> > • Unwavering commitment to Liquidnet’s Core Values
> > • Strategic thinking and problem solving skills.
> > • Preferred Qualifications/Skills
> > • Experience with and knowledge of commission management products and
> > instruments
> > • Experience with Oracle, including PL/SQL
> > • Experience building applications with Grails and Groovy
> > Thanks
> > *Vignesh
> > *Sr Talent Acquisation Consulant
> > Tel: 973-481-0100  Ext: 3069
> > Fax: 973 883 1488
> > Email: vignesh.renik...@makrohealth.com
>
> > *Linkedin: 
> > **http://www.linkedin.com/in/vignesh1*
> >  *For current openings please visit
> > *http://jobs.makrotech.com/searchjobs.aspx
> > *
> > **Makro Technologies Inc.*
> >www.makrotech.com
> > Corporate Headquarters: New Jersey
> > One Washington Park, Suite 1502, Newark, NJ 07102
> > *Other Offices:* Pennsylvania, Illinois, California
>
> > ** Makro is a 3-time INC 5000 company for 2007/2008/2009
> > ** Makro is a 3-time FAST 50 firm in NJ for 2005/2006/2007 (by Deloitte)
> > ** Makro is a 3-time FAST 500 firm in USA for 2005/2006/2007 (by
> > Deloitte)
>
> > --
> > Before posting, please readhttp://watir.com/support. In short: search
> > before you ask, be nice.
>
> > watir-general@googlegroups.com
> >http://groups.google.com/group/watir-general
> > watir-general+unsubscr...@googlegroups.com

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Java Developer - Technical/Product Job Opening - NYC,NY

2011-04-04 Thread Basim Baassiri
seriously, this is not a watir related question

Please can you stop

Thanks

Basim

On Mon, Apr 4, 2011 at 1:12 PM, Makro Tech  wrote:

> Hi Dear Candidate,
>
> This is Vignesh with Makro Technologies, Inc.
>
> We have been in business for over 10 years and we are one of the Fast 500
> National IT staffing and Solution firms in USA. Our clients include
> country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
> Telecom,Government and other industries.
>
> Staying current with technology, finding great consultants and exceeding
> our clients' expectations are our primary objectives.  Thanks for your time
> and attention to this e-mail.  Please let me know if you have any candidates
> available, please find the Job description as mentioned below.
>
> *Job Titile: Java Developer - Technical/Product
> Duration: 1 Year Contract
> Location: NYC, NY*
>
> *Job Description:*
> • Development of projects supporting commission management tools.
> • Key responsibilities include development, testing, implementation, and
> support.
> • Key member who is part of the team that is involved in continuous
> improvement of processes, product development, product quality and
> technology
> • Successful candidate would take ownership of one of the key parts of
> application Skills
> • Highly experienced Java developer, with 4+ years of experience building
> multi-tier applications
> • Comfortable working on agile development projects, with frequent delivery
> of small incremental improvements
> • Strong web development skills, including expertise in using JavaScript
> and HTML.
> • Basic proficiency in Linux
> • Proven ability to communicate effectively at all organizational levels.
> Excellent listening, written, analytical, strategic and verbal communication
> skills.
> • Demonstrated development skills in a collaborative, team oriented style.
> • Unwavering commitment to Liquidnet’s Core Values
> • Strategic thinking and problem solving skills.
> • Preferred Qualifications/Skills
> • Experience with and knowledge of commission management products and
> instruments
> • Experience with Oracle, including PL/SQL
> • Experience building applications with Grails and Groovy
> Thanks
> *Vignesh
> *Sr Talent Acquisation Consulant
> Tel: 973-481-0100  Ext: 3069
> Fax: 973 883 1488
> Email: vignesh.renik...@makrohealth.com
>
> *Linkedin: 
> **http://www.linkedin.com/in/vignesh1*
>  *For current openings please visit
> *http://jobs.makrotech.com/searchjobs.aspx
> *
> **Makro Technologies Inc.*
> www.makrotech.com
> Corporate Headquarters: New Jersey
> One Washington Park, Suite 1502, Newark, NJ 07102
> *Other Offices:* Pennsylvania, Illinois, California
>
> ** Makro is a 3-time INC 5000 company for 2007/2008/2009
> ** Makro is a 3-time FAST 50 firm in NJ for 2005/2006/2007 (by Deloitte)
> ** Makro is a 3-time FAST 500 firm in USA for 2005/2006/2007 (by
> Deloitte)
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> watir-general@googlegroups.com
> http://groups.google.com/group/watir-general
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Simulate keystroke with watir-webdriver

2011-04-04 Thread Jari Bakken
On Mon, Apr 4, 2011 at 11:46 AM, Dan Claudiu Pop
 wrote:
> Hello,
>
> Is there a way to simulate keystroke with watir-webdriver.
> I know that, recently Jarib pushed send_keys method.
> Does it simulate keystroke as well ?
> I've tried all kind of combinations, including ascii, but no success.
> browser.send_keys('{F11}')
>

The API is slightly different:

  browser.send_keys :f11

or e.g.

  browser.text_field.send_keys [:control, 'a'], :backspace

You can see the full list of available keys here: http://goo.gl/DTZ9g

Jari

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Java Developer - Technical/Product Job Opening - NYC,NY

2011-04-04 Thread Makro Tech
Hi Dear Candidate,

This is Vignesh with Makro Technologies, Inc.

We have been in business for over 10 years and we are one of the Fast 500
National IT staffing and Solution firms in USA. Our clients include
country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
Telecom,Government and other industries.

Staying current with technology, finding great consultants and exceeding our
clients' expectations are our primary objectives.  Thanks for your time and
attention to this e-mail.  Please let me know if you have any candidates
available, please find the Job description as mentioned below.

*Job Titile: Java Developer - Technical/Product
Duration: 1 Year Contract
Location: NYC, NY*

*Job Description:*
• Development of projects supporting commission management tools.
• Key responsibilities include development, testing, implementation, and
support.
• Key member who is part of the team that is involved in continuous
improvement of processes, product development, product quality and
technology
• Successful candidate would take ownership of one of the key parts of
application Skills
• Highly experienced Java developer, with 4+ years of experience building
multi-tier applications
• Comfortable working on agile development projects, with frequent delivery
of small incremental improvements
• Strong web development skills, including expertise in using JavaScript and
HTML.
• Basic proficiency in Linux
• Proven ability to communicate effectively at all organizational levels.
Excellent listening, written, analytical, strategic and verbal communication
skills.
• Demonstrated development skills in a collaborative, team oriented style. •
Unwavering commitment to Liquidnet’s Core Values
• Strategic thinking and problem solving skills.
• Preferred Qualifications/Skills
• Experience with and knowledge of commission management products and
instruments
• Experience with Oracle, including PL/SQL
• Experience building applications with Grails and Groovy
Thanks
*Vignesh
*Sr Talent Acquisation Consulant
Tel: 973-481-0100  Ext: 3069
Fax: 973 883 1488
Email: vignesh.renik...@makrohealth.com

*Linkedin: 
**http://www.linkedin.com/in/vignesh1*
*For current openings please visit
*http://jobs.makrotech.com/searchjobs.aspx
*
**Makro Technologies Inc.*
www.makrotech.com
Corporate Headquarters: New Jersey
One Washington Park, Suite 1502, Newark, NJ 07102
*Other Offices:* Pennsylvania, Illinois, California

** Makro is a 3-time INC 5000 company for 2007/2008/2009
** Makro is a 3-time FAST 50 firm in NJ for 2005/2006/2007 (by Deloitte)
** Makro is a 3-time FAST 500 firm in USA for 2005/2006/2007 (by
Deloitte)

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Simulate keystroke with watir-webdriver

2011-04-04 Thread Dan Claudiu Pop
Hello,

Is there a way to simulate keystroke with watir-webdriver.
I know that, recently Jarib pushed send_keys method.
Does it simulate keystroke as well ?
I've tried all kind of combinations, including ascii, but no success.
browser.send_keys('{F11}')

Thank you,
Dan

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Install fails: "s4t-utils-1.0.4 has an invalid value for @cert_chain"

2011-04-04 Thread sridhar
Hey I have the same problem. Please let me know if you find a solution
for it. Thanks!

On Apr 4, 6:29 am, Uri Goldstein  wrote:
> Hello,
>
> I am new to Watir. My first installation of Watir seems to have failed. Upon
> running "gem install watir" I get:
>
> Fetching: win32-api-1.4.8-x86-mingw32.gem (100%)
> Fetching: windows-api-0.4.0.gem (100%)
> Fetching: windows-pr-1.2.0.gem (100%)
> Fetching: win32-process-0.6.5.gem (100%)
> Fetching: xml-simple-1.0.15.gem (100%)
> Fetching: hoe-2.9.4.gem (100%)
> Fetching: s4t-utils-1.0.4.gem (100%)
> ERROR:  While executing gem ... (Gem::FormatException)
>     s4t-utils-1.0.4 has an invalid value for @cert_chain
>
> This is on Windows 7 Ultimate SP1 64-bit running Ruby 1.9.2-p180 with ruby
> gems 1.7.1. And just in case it's related - FireFox 4.0.
>
> Can I still use Watir? How can I fix this?
>
> Thanks,
> Uri Goldstein

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] .Net Developer Job Opening - Valencia, CA

2011-04-04 Thread Makro Tech
Hi

This is Vignesh with Makro Technologies, Inc.
We have been in business for over 10 years and we are one of the Fast 500
National IT staffing and Solution firms in USA. Our clients include
country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
Telecom,Government and other industries.

Staying current with technology, finding great consultants and exceeding our
clients' expectations are our primary objectives.

Thanks for your time and attention to this e-mail.  Please let me know if
you have any candidates available, please find the Job description as
mentioned below.

*Title : .Net Developer
Location : Valencia, CA
Duration :6 Months*
*Responsibilities:*
• Work closely with business representatives and other team members to
understand business requirements that drive the analysis, design and
development of quality technical solutions that align with business and IT
strategies and comply with corporate and regulatory standards
• Direct and participate in the full software development lifecycle
• Make recommendations towards the development of new systems or reuse of
existing systems
• Work on medium to large, varied and complex projects that require skill in
multiple technical environments and knowledge in various business areas
• Work on multiple simultaneous projects as a project team member and/or as
a project lead
• Coach and/or mentor more junior technical staff
*
Required Skills*
• Bachelor degree in Computer Science or a related area
• 7+ years of programming/systems analysis experience
• Waterfall SDLC experience
• Ability to be a self-starter in a dynamic and fast paced environment
• Microsoft technologies, including .Net, C#, VB.Net, ASP.Net, XML, HTML,
JavaScript.
• Tools: Visual Studio .Net 2008, SQL Server 2000-2008, SVN
• Database technologies: Microsoft SQL, Oracle PL/SQL
• Reporting systems: Crystal Reports Server 2008
• Regulatory software validation experience a plus

Thanks
*Vignesh
*Sr Talent Acquisation
Tel: 973-481-0100  Ext: 3069
Fax: 973 883 1488
*E mail:* vignesh.renik...@makrohealth.com
*Linkedin: 
**http://www.linkedin.com/in/vignesh1*

For current openings please visit
http://jobs.makrotech.com/searchjobs.aspx

Candidate HelpDesk: 973-679-5005
*
Makro Technologies Inc.*
www.makrotech.com
Corporate Headquarters: New Jersey
One Washington Park, Suite 1502, Newark, NJ 07102
*Other Offices:* Pennsylvania, Illinois, California
** Makro is a 3-time INC 5000 company for 2007/2008/2009
** Makro is a 3-time FAST 50 firm in NJ for 2005/2006/2007 (by Deloitte)
** Makro is a 3-time FAST 500 firm in USA for 2005/2006/2007 (by
Deloitte)

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: how to access an element from a multi level nested div/ul/li

2011-04-04 Thread Chuck van der Linden
The only time that 'nesting' really matters is

1) items inside a frame, which must always be addressed starting at
the frame level (but you do not need to specify the 'path' to the item
unless that's the only way to identify it)

2) The item you want lacks a means to uniquely identify it (e.g. no
name, id, class, unique text, etc)

As long as there is some way (via a single value such as ID, or a
combination such as Class and Name) to uniquely identify an object,
you don't need to worry about how deeply it is nested.

If the element you want does not have any unique characteristics, then
it's time to start looking at the containers that the item is
'wrapped' by, and see if one of them can be incorporated to create a
'key' of sorts that will let you address the object..

To get more specific, and give you good advice, you REALLY need to
post some sample HTML that shows the section of the page around the
element you are trying to address, (along with telling us WHICH
element you are trying to address) and then people can give you
specific examples of Watir code that could be used to work with that
element

On Mar 31, 8:35 am, a b  wrote:
> Hi,
>
> please tell me the email address where I can send an attached file.
>
> Thanks,
> Cristina

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: .Net Developer Job Opening - Valencia, CA

2011-04-04 Thread Chuck van der Linden
I vote nuke and ban..

recruiters who post job openings where there's nothing to do with
watir listed anywhere in the opening have no business in this group.

On Apr 1, 3:41 pm, Makro Tech  wrote:
> Hi
>
> This is Vignesh with Makro Technologies, Inc.
> We have been in business for over 10 years and we are one of the Fast 500
> National IT staffing and Solution firms in USA. Our clients include
> country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
> Telecom,Government and other industries.
>
> Staying current with technology, finding great consultants and exceeding our
> clients' expectations are our primary objectives.
>
> Thanks for your time and attention to this e-mail.  Please let me know if
> you have any candidates available, please find the Job description as
> mentioned below.
>
> *Title : .Net Developer
> Location : Valencia, CA
> Duration :6 Months*
> *Responsibilities:*
> • Work closely with business representatives and other team members to
> understand business requirements that drive the analysis, design and
> development of quality technical solutions that align with business and IT
> strategies and comply with corporate and regulatory standards
> • Direct and participate in the full software development lifecycle
> • Make recommendations towards the development of new systems or reuse of
> existing systems
> • Work on medium to large, varied and complex projects that require skill in
> multiple technical environments and knowledge in various business areas
> • Work on multiple simultaneous projects as a project team member and/or as
> a project lead
> • Coach and/or mentor more junior technical staff
> *
> Required Skills*
> • Bachelor degree in Computer Science or a related area
> • 7+ years of programming/systems analysis experience
> • Waterfall SDLC experience
> • Ability to be a self-starter in a dynamic and fast paced environment
> • Microsoft technologies, including .Net, C#, VB.Net, ASP.Net, XML, HTML,
> JavaScript.
> • Tools: Visual Studio .Net 2008, SQL Server 2000-2008, SVN
> • Database technologies: Microsoft SQL, Oracle PL/SQL
> • Reporting systems: Crystal Reports Server 2008
> • Regulatory software validation experience a plus
>
> Thanks
> *Vignesh
> *Sr Talent Acquisation Consultant
> Tel: 973-481-0100  Ext: 3069
> Fax: 973 883 1488
> *E mail:* vignesh.renik...@makrohealth.com
> Linkedin: 
> *http://www.linkedin.com/in/vignesh1*
> (Accept
> All Invitations to your's and My Professional 
> Network)http://www.twitter.com/Makro_Tech(follow me get Followed back)
>
> For current openings please visithttp://jobs.makrotech.com/searchjobs.aspx
>
> Candidate HelpDesk: 973-679-5005
> *
> Makro Technologies Inc.*www.makrotech.com
> Corporate Headquarters: New Jersey
> One Washington Park, Suite 1502, Newark, NJ 07102
> *Other Offices:* Pennsylvania, Illinois, California
> ** Makro is a 3-time INC 5000 company for 2007/2008/2009
> ** Makro is a 3-time FAST 50 firm in NJ for 2005/2006/2007 (by Deloitte)
> ** Makro is a 3-time FAST 500 firm in USA for 2005/2006/2007 (by
> Deloitte)

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: checkbox questions

2011-04-04 Thread Adam Reed
Cristina,

You may find solutions faster by searching this group using the search
box at the top of the page. Both topics have been addressed many times
here.

1. ie.checkbox(:name => "Checkbox").checked?returns true or false

2. There are a few methods to alter the checkbox value:
ie.checkbox(:name => "Checkbox").set  (defaults to true)
ie.checkbox(:name => "Checkbox").set false
ie.checkbox(:name => "Checkbox").clear
ie.checkbox(:name => "Checkbox").click

Thanks,
Adam

On Apr 4, 8:26 am, a b  wrote:
> Hi,
>
> I have 2 questions:
>
> 1. How can I check the default value for a checkbox. Do we have any watir
> api.
>
> So I would like to check if a specific checkbox is enabled/desabled.
>
> 2. I encounter the following problem: I cannot enable/disable a checkbox.
>
> Here is just a part of the code. I wand to disable/enable the checkbox
>
>                 
>                  string="services">Services:
>                 
>                  machidden="create update mailbox" hidden="inline">
>                  string="pop3">POP3: type="checkbox">  
>
> That is the watir code
>
> sleep 6
> puts "... POP3 label"
> test11 =  @ff.div(:class => "macblock").div(:id =>
> "maccontext").table(:index, 1)[10][2].span(:class => "macstring", :string =>
> "pop3").text
> puts test11
> sleep 10
>
> test12 =  @ff.div(:class => "macblock").div(:id =>
> "maccontext").table(:index, 1)[10][2].checkbox(:id =>
> "__services_pop3").clear
> puts test12
>
> @ff.div(:class => "macblock").div(:id => "maccontext").table(:index,
> 1)[10][2].checkbox(:id => "__services_pop3").set
> sleep 10
>
> Also I've attached a screen snapshot with the html source code and the ui.
>
> I'll appreciate any sugestion,
> Best Regards,
> Cristina
>
>  checkbox.png
> 122KViewDownload

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Re: Compare HTML with HTML in a file

2011-04-04 Thread marc
I'm not sure how this is Watir related. You may have better luck
asking a general Ruby users group.

On Apr 4, 12:15 am, dt_nz  wrote:
> Hi
> I am using imap to retrieve email, and want to compare the data (which
> is retrieved as a string but contains html) with html stored in a
> file.  If the data does not match my expected, I would like to find
> the differences, and format the html so its readable.
>
> Anyone know of any good formaters, or html comparators.  I had a look
> at html tidy, but I cant find how to set tidy lib path (in the rdoc
> its Tidy.path = '/usr/lib/tidylib.so', but I cant find this file in my
> ruby directory as I am using windows)
>
> Thanks in advance

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com


[wtr-general] Install fails: "s4t-utils-1.0.4 has an invalid value for @cert_chain"

2011-04-04 Thread Uri Goldstein
Hello,

I am new to Watir. My first installation of Watir seems to have failed. Upon 
running "gem install watir" I get: 

Fetching: win32-api-1.4.8-x86-mingw32.gem (100%)
Fetching: windows-api-0.4.0.gem (100%)
Fetching: windows-pr-1.2.0.gem (100%)
Fetching: win32-process-0.6.5.gem (100%)
Fetching: xml-simple-1.0.15.gem (100%)
Fetching: hoe-2.9.4.gem (100%)
Fetching: s4t-utils-1.0.4.gem (100%)
ERROR:  While executing gem ... (Gem::FormatException)
s4t-utils-1.0.4 has an invalid value for @cert_chain


This is on Windows 7 Ultimate SP1 64-bit running Ruby 1.9.2-p180 with ruby 
gems 1.7.1. And just in case it's related - FireFox 4.0.

Can I still use Watir? How can I fix this?


Thanks,
Uri Goldstein

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

watir-general@googlegroups.com
http://groups.google.com/group/watir-general
watir-general+unsubscr...@googlegroups.com