Saturday 31 May 2014

Manual Testing Job : Navi mumbai : June 2014

Urgent opening for OSS/ BSS billing tester. 

Job Location:- Navi Mumbai 

Need associate who can join within 15 days(after offer). candidate must have to hold valid passport. 

JD:- experience in E2E Testing projects in Telecom domain 3+ years of experience in System Testing/E2E Testing projects in Telecom domain. Hands on test execution experience is a must. 

3+ years of testing experience in OSS/BSS systems(Billing) Hands-on experience in System testing of SAP-CRM/HP- Assurance/Ericsson - Fulfillment/SAP - Billing systems Hands-on experience in E2E testing of OSS / BSS systems Must have excellent communication and interpersonal skills Must be business-cum-techno managers with ability to dig up root cause of failure and drive for correct implementation. Must have ability to handle team management with full productive outputs. Must be sound in comm skills (written & verbal) and able to front end with customer with correct explanations. Strong analytical and trouble shooting skills 

Interested candidate kindly send updated profile with below mention details:- 

Total exp- 
Rel exp- 
Current CTC- 
Exp CTC- 
NP- 
Passport :

Email to ipsita.chowdhury@eyeglobal.com 

Friday 30 May 2014

Mobile Testing Job : Vizury.com : Bangalore: June 2014

Kindly find the excellent opening for Mobile QA withVizury.com

Job TitleProduct Engineer - QE- Mobile 

LocationBangalore

Company Profile:Vizury is a Digital CRM company that empowers online businesses engage their prospects and customers in a 1:1 marketing dialogue by unlocking the full value of their digital data using Vizury's cutting edge advertising technology platform. Established in 2008, Vizury is headquartered in Bangalore with operations in APAC, ANZ, Europe and LATAM. Vizury is backed by leading VC firms such as Nokia Growth Partners, Inventus Capital Partners and Ojas Ventures.The company's Visitor Relationship Management (VRM) solution allows advertisers to engage their site visitors once they leave their website with highly pertinent 1:1 ads generated in real-time resulting in substantial and measurable value. Vizury's customers include industry leaders such as such as Webjet, Virgin Airlines, Expedia, Zuji, Netshoes, Viajanet, Zozo, Kokuken, Ctrip, Yintai, Jabong, Jet Airways and MakeMyTrip. Vizury was recently named in NASSCOM's Emerge 'League of 10' for 2012 in the growth category.www.vizury.comVizury raises $9m funding: http://bit.ly/V2KfcpHow Vizury VRM helps online businesses: http://bit.ly/UG8Z4yVizury named in NASSCOM's Emerge 10: bit.ly/Tl18adFollow us: Reporting :Basic Qualifications :Lead QABachelor degree in IT, CS, or equivalent3-4 yrs of Mobile testing experience (android and iOS)Strong knowledge of Quality Engineering practicesStrong knowledge on Java and OOP ConceptsHands on experience in using at least one of the mobile test automation frameworksStrong analytical and problem solving skillsPassing for Quality, and especially exploring new ideas on testing mobile applications

Requirements:  Strong ability in testing native/mobile-web applications on mobile devices, emulators.Strong understanding of mobile platforms and application internals - android and iOSMust have developed automated test cases for android/iOS applications using open source librariesHands on experience in using robotium, frank, UIAutomator, monkeytalk will be an added advantageShould be an expert in debugging native mobile applications using platform specific debuggers (Eg. DDMS)Comfortable in using X-Code and Eclipse

Kindly reply with:
Total Exp:
Current CTC:
Exp CTC:
NP:

Email to monisha.m@alpconsulting.in

Testing Job : Source one : Mumbai : June 2014

Hope you are doing well.

SourceOne (www.msourceone.com) one of the fastest growing company from India needs many candidates On Performance Testing For Mumbai work location.

You would be a permanent employee of SourceOne and would be deployed at MNC on a long term project.(C2H Process)

Salary and other benefits would be excellent.Kindly send your cvs with below input if you would be interested for this opening.

Your Full Name:
DOB:
Present Location:
Interested for C2H (Y/N):
:Are you Working at Present (Y/N):
Total IT Exp :
Rel Exp in Performance Testing::
Present employer (company) name:Present employment (Contract/Permanent):
Notice Period:
Current Salary:
Expected Salary:
Reason for Change:
Willing to Work at Mumbai(Y/N):
Willing to Join SourceOne in 7-10 days after selection (Y/N):
Willing to Takeup F2F interview (Y/N)::Note 1: If you are contract employee Please mention Parent company Name.Note 2: Please do not change the Subject line.Kindly send your cvs asap and also forward this mail requirement to your friends/colleagues who would be interested..

Email id: mahitha@msourceone.com

Thursday 29 May 2014

Testing on various Browsers using Selenium Webdriver



      We will learn to write a Script to open and Launch a new browser and open the desired URL. Selenium webdriver supports all important browsers like 
 
                    1) Firefox
                    2) Chrome
                    3) IE
                    4) Safari
                    5) Opera

       Opera and safari browsers are not very stable using selenium. Hence we will concentrate on Firefox, Chrome and IE.

       A)     Firefox Browser

               1.       Write the below code to open Firefox browser and open the URL.

      @Test
      public void openfirefox()
      {
            WebDriver driver1= new FirefoxDriver ();
           
                                driver1.get("https://www.google.co.in");
}

 
              2.       Explanation of the code

a) WebDriver driver = new FirefoxDriver();
b) WebDriver: It is a predefined imported Class from “open.openqa.selenium”
c) Driver : This is name of the new object created.
d) driver.get--->WebDriver's get() method is used to launch a new browser session and directs it to the URL that you specify as its parameter. You can specify the URL to be opened.


      3.       The above code, will launch Firefox browser and open the URL (google.com).

 

          

           B)     Chrome Browser


1.       Write the below code to open Chrome browser and open the URL.

      @Test
      public void openchrome()
     
      {
                       
            WebDriver driver2 =new ChromeDriver();
           
            driver2.get("https://in.yahoo.com/?p=us");
      }
     
2.       The script will give an error.  “ The path to the driver executable must be set by the webdriver.ie.driver system property”.
3.       For resolving this error , go to http://docs.seleniumhq.org/download/
And download the chrome driver for you PC (64Bit or 32 Bit).




4.       Now save the downloaded chromedriver.exe on your machine.
5.       Right click on the package and add source folder. Name the folder chromedriver. Now place the exe file inside this folder.
6.       Now write the modified code to run chrome browser.
   @Test
      public void openchrome()
     
      {
        System.setProperty("webdriver.chrome.driver",System.getProperty("user.dir")+"\\ChromeDriver\\chromedriver.exe");
           
            WebDriver driver2 =new ChromeDriver();
           
            driver2.get("https://in.yahoo.com/?p=us");
      }
     
7.       Explanation of code

a)       setProperties method changes the set of system properties for the current running application. These changes are not persistent. That is, changing the system properties within an application will not affect future invocations of the Java interpreter for this or any other application. The runtime system re-initializes the system properties each time its starts up. If changes to system properties are to be persistent, then the application must write the values to some file before exiting and read them in again upon startup.
b)      getProperty method returns a string containing the value of the property. If the property does not exist, this version of getProperty returns null.
c)       User.dir - User working directory

In this, you set the chrome driver’s path, using the chromedriver downloaded and then launch the chrome browser from the project path.


              C)    IE Browser

1.       Write the following code for launching IE browser and opening the URL.
   @Test
      public void openie()
     
      {
                 
            WebDriver driver3 =new InternetExplorerDriver();
           
            driver3.get("http://www.rediff.com/");
      }

2.       When you run the above code it will give you same error as for chrome browser. The path to the driver executable must be set by the webdriver.ie.driver system property”.

3.       So Download IE driver from   http://docs.seleniumhq.org/download/


4.       Now save the exe file to you folder.

5.       Create a source folder in your project package and keep the exe file over there.
Rightclick on Package --> Add new source folder--> Copy the exe file to your project.

6.       Now write the modified code to IE browser

 @Test
      public void openie()
     
      {
                 
      System.setProperty("webdriver.ie.driver","D:\\Workspace\\TestProject\\iedriver\\IEDriverServer.exe");
           
            WebDriver driver3 =new InternetExplorerDriver();
           
            driver3.get("http://www.rediff.com/");
      }
     
7.             Now the above script will run successfully.

8.       In the above script , you set the IE driver’s path, using the IE downloaded and then launch the IE browser from the project path.
  


Sample Script for Browser  Testing Using Selenium Webdriver.

 package TestPackage;


import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.remote.DesiredCapabilities;


public class BrowsersTest {
   
//  Open Firefox Browser

   @Test
    public void openfirefox()
    {
        WebDriver driver1= new FirefoxDriver ();
       
        driver1.get("https://www.google.co.in");
       
    }
   
    // Open Chrome Browser
   
    @Test
    public void openchrome()
   
    {
      
              System.setProperty("webdriver.chrome.driver",System.getProperty("user.dir")+"\\ChromeDriver\\chromedriver.exe");
        System.setProperty(("userdir")+ "chromedriver\\chromedriver.exe","chromedriver.exe");
   
        WebDriver driver2 =new ChromeDriver();
       
        driver2.get("https://in.yahoo.com/?p=us");
    }
   
    // Open IE browser

    @Test
    public void openie()
   
    {
          
                System.setProperty("webdriver.ie.driver","D:\\Workspace\\TestProject\\iedriver\\IEDriverServer.exe");
       
        WebDriver driver3 =new InternetExplorerDriver();
       
        driver3.get("http://www.rediff.com/");
   }

}