Thursday 31 July 2014

Testing Job: Pune: August 2014

Play Games24x7 is looking to hire Automation Tester on Selenium for its Mumbai office.

About Play Games24x7:

Games 24x7 is the first online company to bring games of skill with cash prizes to the large, yet underserved Indian market in a fun, lighthearted and friendly setting. India's rich history and culture of games and the rapid growth of the Internet has presented us with a unique opportunity - the opportunity to bring to people across India games they have always loved and enjoyed, but don't necessarily find the time or the friends to play with anymore. Competition, the joy of success and social connectivity form the backbone of our product. We kicked off this ambitious journey in 2009 with India's most popular card game - Rummy. Today, we are India's largest online rummy site (www.rummycircle.com) and millions of players visit us every month to play for free and for cash prizes. We are funded jointly by international venture capitalists and a hedge fund that has made significant investments in the past in some of the most successful Internet companies in India.

Position Title: QA Engineer (Automation Testing, Selenium)

Location: Malad (W)

Position/Role Description:

This person will be primarily responsible for Test designing, Testing and reporting.

General Accountabilities/Job Responsibilities:

* Understanding the functional requirements from the BRS
* Analyze and design automation Test scripts from the existing functional test cases
* Capable enough to handle the automation regression suites for every release
* Test Reporting through Mantis
* Thrive to learn new technologies

Job Specifications:

Mandatory Technical Skills:

* 1-4 years of relevant experience

* Strong Core Java fundamentals and Object Oriented Concepts

* Experience in Design and execute Automation test scripts using Selenium

* Good in Manual Testing

* Strong logical & problem solving skills

* Excellent Communication skills

* BE/B. Tech. Computer Science or MCA from a reputed University

* Ensure the QA process is followed across the Release cycle

* Flexibility to work in tight schedules


Desired Skills:

* Selenium Grid, Flash Testing

* Experience in Multi-player online Gaming

* Experience in Agile Methodologies


If you wish to take this process ahead, please provide the following details along with your updated resume:

1. Current Location:
2. Current CTC:
3. Expected CTC:
4. Notice Period:


Email to sarita.singh@gmail.com

Testin Job : C2H: Pune: 2nd August 2014

Contract to Hire position for "Automation Tester(Selenium)" for Pune Location Immediate joiners preffered. Interviews on this Saturday 2nd August 2014.

Send your resume immediately so we can schedule your interview. Looking for immediate joineer or max 7 day.

Any relevant reference from your side is really appreciated

Interview Mode: Face 2 Face.

Experience 3.5 - 7 years

Location - Pune

Designation - "Automation Tester(Selenium )".

Good communicator and be able to work efficiently.

Please Apply with following details:-

Current CTC:-
Exp CTC:-
Notice Period:-
Total Exp:-
Reason for Change :
Date of Birth :-
Pancard no -
Passport no -
Current location - 



Email to azim.k@dcoretech.com

Parameterization in Jmeter



Parameterization: CSV Data Set Config

Parameterization is process by which user input some values to test script at execution time using external files such as csv, xls, txt, xml etc. 

The data entered from user (client side) must be stored in a text file and linked with JMeter, this is called as Parameterization.

Eg:  Suppose we need to check login functionality with 100 set of user so in this case we parameterize users from external file. At execution time user picked dynamically.

Steps for Parameterization

1.       Record a simple Wiki search in Jmeter. Put the search keyword as “Jmeter”. The result will be something like this.




2.       We will parameterize the search keyword “Jmeter”.
3.       For that, Add a CSV Data set Config and a Listener element to the thread group.

Add->Config Element->CSV Data Set Config

Add->Listener->View Results Tree



4.       Now create a text file with data set.




5.       Define the path of the file in CSV data config and give the variable name.

Filename: searchitem.txt



(Give the path name if you have put it inside a subfolder e.g. foldername\search.csv)



Variable Names: searchitem



(This variable name is referenced in the search sample.)



Delimiter: ,


6.       Now go to search sample and change the value of variable Jmeter to ${searchitem}.In Jmeter we reference a variable using ${} .For each iteration the value of text will be replaced as fetched by variable.
 




7.       Now run the script and view the results in View Result Tree, Check if the script is picking up the variable name from the file.




8.       Now change the loop count in the thread group as 3. So that script will run 3 times.




9.       Check the results in View result tree, the script runs 3 times, each time picking new data from the file.