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

2011-04-01 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 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 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: Watir simple field recorder

2011-04-01 Thread Darryl Brown
Hello Babitha,

I would be interested in see your version of the Watir recorder. On a
new project, creating a GUI map is one of the first things that we do
after initial prototyping.


I will respond directly to you with my email address.

Thanks,
Darryl

On Apr 1, 1:26 pm, Babitha  wrote:
> A long time back, Scott Hanselman of microsoft had posted a ruby watir
> recorder in his blog. Like most other recorders, this had the problem
> that the code generated couldn't be reused.
>
> I made some small tweaking to this code so that when a user traverses
> through the page, clicking on each element that he wants to record, it
> records all the elements in the Watir format and gives back a nice
> module with properties defined for each element.
>
> As a sample say you have a page with two fields FirstName and
> LastName.
>
> The recorded output will be something like below:
>
> module MyPage
>     def first_name
>          $browser.text_field(:id, "FirstName")
>     end
>
>     def last_name
>         $browser.text_field(:id, "LastName)
>     end
> end
>
> Now just add this module to your test cases and use first_name,
> last_name etc directly without bothering about the identification of
> IDs.
>
> I could share this script if anybody was interested. But, I am not
> sure where I can upload it.
>
> Thanks,
> Babitha

-- 
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] Watir simple field recorder

2011-04-01 Thread Babitha
A long time back, Scott Hanselman of microsoft had posted a ruby watir
recorder in his blog. Like most other recorders, this had the problem
that the code generated couldn't be reused.

I made some small tweaking to this code so that when a user traverses
through the page, clicking on each element that he wants to record, it
records all the elements in the Watir format and gives back a nice
module with properties defined for each element.

As a sample say you have a page with two fields FirstName and
LastName.

The recorded output will be something like below:

module MyPage
def first_name
 $browser.text_field(:id, "FirstName")
end

def last_name
$browser.text_field(:id, "LastName)
end
end

Now just add this module to your test cases and use first_name,
last_name etc directly without bothering about the identification of
IDs.

I could share this script if anybody was interested. But, I am not
sure where I can upload it.

Thanks,
Babitha

-- 
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] Watir simple field recorder

2011-04-01 Thread Babitha
There was a ruby watir recorder written by Scott Hanselman(of
Microsoft of course) a long time back. It was a full fledged recorder
and like other recorders had the issue that the code generated
couldn't be reusable.

I made some small modifications to this so that it identifies the
element IDs and wraps the element as a property in a module.

Basically the format of the code generated would be as folows:

module MyPage
   def first_name
  $browser.text_field(:id, "FirstName")
   end
def first_name
  $browser.text_field(:id, "FirstName")
   end

end

-- 
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-01 Thread joedio
When I'm working with elements within a nested element, I collect the
number of that elements (e.g. table) present on the page, then loop
backwards through them starting with the deepest nested element
 (the one with the highest index number), and
start looking for the element I'm interested in there, if its not
found continue to the next lowest element's index number.

This assures that the element being searched for will be found within
the
nested element that is its direct parent.

This technique work for nested tables, frames, spans, divs, etc.

Hope this helps,

Joe

-- 
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] SafaritWatir and text_field passwords

2011-04-01 Thread Željko Filipin
On Thu, Mar 31, 2011 at 10:39 PM, Ken Chin  wrote:
> ree-1.8.7-2010.02 > b.text_field(:id, "session_password").set("test")

Try this instead:

b.password(:id, "session_password").set "test"

Željko
--
watir.com - community manager
watir.com/book - author
watirpodcast.com - host
viaqa.mobi conference on software testing - organizer

-- 
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: Recent Stack Overflow Questions Tagged Watir

2011-04-01 Thread Željko Filipin
http://stackoverflow.com/questions/5499437/is-there-a-way-to-connect-to-a-h2-database-from-ruby-without-jruby

-- 
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