Your Corporate Life

January 2023

Unit Testing
Interview

Unit Testing In Software Engineering

Unit Testing Unit testing is a software testing technique where individual components of a software application are tested in isolation from the rest of the application. The goal of unit testing is to validate that each unit of code is working correctly and as expected. Unit tests are automated, meaning they can be run as many times as needed without manual intervention. They are also repeatable, meaning that they can be run again and again with the same results, providing a consistent level of quality control. Unit testing is a critical component of the software development process and is usually performed during the development phase. It helps identify bugs and defects early in the development process, making it easier and cheaper to fix them. Additionally, unit tests serve as a living documentation of the code and can help to catch any regressions in future development. Overall, unit testing helps ensure that the software application is functioning correctly, reduces the number of defects in the application, and provides confidence to developers and stakeholders that the application will work as expected. Unit testing with one real-life example A real-life example of unit testing would be testing the functionality of a login form in a web application. This can be done using a framework such as JUnit or TestNG. The test cases would cover the following scenarios: Once these test cases are written and executed, the results would indicate whether the login form is functioning correctly or not. If any of the test cases fail, the development team can then fix the issue and rerun the tests to ensure that the form is working as expected. This type of testing helps ensure that the individual components of the web application, in this case, the login form, are working correctly and efficiently. This helps to catch any potential problems before the application is deployed to production, resulting in a smoother user experience for the end-user.

Retesting And Regression Testing
Interview

Difference Between Retesting And Regression Testing

Regression Testing Regression testing is the process of testing a software application after it has been modified or updated to ensure that the changes made do not negatively impact the functionality of the software. This type of testing is used to verify that any new changes or updates to the software do not introduce new bugs or cause existing features to malfunction. Regression testing is typically conducted on a regular basis, such as after each release or update, to ensure that the software remains stable and reliable. The goal of regression testing is to identify and fix any issues before they become major problems for users. What means by retesting? Retesting is the process of testing a software application again after it has been modified or updated. This type of testing is typically conducted after a bug or defect has been identified and fixed, in order to verify that the fix has resolved the issue and that the software is functioning correctly. Retesting is important because it helps to ensure that any bugs or defects that are identified are fully resolved and that the software is stable and reliable. Retesting can also be done after a software update or release to ensure that the new changes have not introduced any new issues or broken existing functionality. What is difference between retesting and regression testing? The main difference between retesting and regression testing is their focus and objectives. Retesting is focused on testing specific areas of the software that have been modified or updated after a bug or defect was identified and fixed, to ensure that the fix has resolved the issue and that the software is functioning correctly. Regression testing, on the other hand, is focused on testing the entire software application after it has been modified or updated to ensure that the changes made do not negatively impact the functionality of the software. This type of testing is used to verify that any new changes or updates to the software do not introduce new bugs or cause existing features to malfunction. In summary, retesting is focused on testing specific areas of the software to ensure that a fix has resolved an issue, while regression testing is focused on testing the entire software application to ensure that changes have not negatively impacted the functionality. Software Testing Jobs

Manual Testing And Its Types
Interview

Manual Testing And Its Types

What is mean by manual testing Manual testing is a process in which software is tested manually by a human tester, rather than using automated tools or scripts. There are several types of manual testing, including: Functional testing: This type of testing verifies that the software functions as intended and meets the requirements specified by the client or end-user. Non-functional testing: This type of testing evaluates the software’s performance, security, usability, and other non-functional aspects. Unit testing: This type of testing focuses on individual units or components of the software, such as functions or methods, to ensure they are working correctly. more.. Integration testing: This type of testing verifies that different components of the software work together as expected. System testing: This type of testing evaluates the software as a whole and verifies that it meets the requirements of the end-user or client. Acceptance testing: This type of testing is the final phase of testing and is performed by the end-user or client to determine whether the software meets their expectations and can be accepted for use. Exploratory testing: This type of testing is performed by a tester to explore the system and find defects, without following a specific test plan or script. Regression testing: This type of testing is done to ensure that changes made to the software have not introduced new bugs or broken existing functionality. What are the advantages of manual testing? Manual testing has several advantages, including: Flexibility: Manual testing allows for more flexibility and creativity in testing, as testers can devise their own test cases and test scenarios. Human intuition: Manual testing allows for the use of human intuition and experience, which can be valuable in finding defects that automated testing may miss. Real-world scenario testing: Manual testing allows for testing in real-world scenarios, which can be difficult to replicate with automated testing. Better detection of usability issues: Manual testing allows for the detection of usability issues, such as user-interface design defects, that may not be identified through automated testing. Cost-effective: In some cases, manual testing can be more cost-effective than automated testing, especially for small projects or projects with a short development cycle. Better understanding of the system: Manual testing helps testers to better understand the system, which can be useful for identifying defects and for providing feedback to developers. Better support for exploratory testing: Manual testing allows for more flexibility in exploring the system and finding defects, which can be useful in identifying defects that may not have been found through other types of testing. What are the different types of testing? There are several types of manual testing, including: Functional testing: This type of testing verifies that the software functions as intended and meets the requirements specified by the client or end-user. Non-functional testing: This type of testing evaluates the software’s performance, security, usability, and other non-functional aspects. Unit testing: This type of testing focuses on individual units or components of the software, such as functions or methods, to ensure they are working correctly. Integration testing: This type of testing verifies that different components of the software work together as expected. System testing: This type of testing evaluates the software as a whole and verifies that it meets the requirements of the end-user or client. Acceptance testing: This type of testing is the final phase of testing and is performed by the end-user or client to determine whether the software meets their expectations and can be accepted for use. Exploratory testing: This type of testing is performed by a tester to explore the system and find defects, without following a specific test plan or script. Regression testing: This type of testing is done to ensure that changes made to the software have not introduced new bugs or broken existing functionality. User Acceptance Testing (UAT): This type of testing is done by the end-users of the system to confirm the system meets their requirements and is ready for production. Compatibility testing: This type of testing is done to confirm the software is compatible with different environments such as different OS, browsers, devices, and hardware. Security testing: This type of testing is done to check the security of the software and ensure that it is protected against unauthorized access, hacking, and data breaches. Localization testing: This type of testing is done to ensure that the software is properly translated and works correctly in different languages and locales. Software Testing Jobs Testing Material

Your Corporate Life
Interview

Selenium Interview Questions

We are listing 25 interview questions in this post if any important questions are not in the below list please add same in the comment What is Selenium and why is it used for web automation? Selenium is a suite of software tools that is used for automating web browsers. It allows developers and testers to automate web applications in a variety of languages and on a variety of platforms. Selenium is used for web automation because it allows for the creation of automated tests that can be run against web applications to ensure that they are functioning correctly. These tests can be run repeatedly, which helps to ensure that the application is stable and reliable over time. Additionally, Selenium can be used to automate repetitive tasks, such as filling out forms or navigating through a website, which can save time and improve efficiency. What are the different components of the Selenium suite? The Selenium suite is made up of several different components, each serving a specific purpose: Selenium WebDriver: This is the core component of the Selenium suite and is used to interact with web browsers. It allows developers and testers to write scripts that can automate web browsers and interact with web applications. Selenium RC (Remote Control): This component is used to run Selenium WebDriver scripts on a remote machine. It allows for parallel testing by running tests on different machines simultaneously. Selenium Grid: This component allows for the distribution of test execution across multiple machines and different browsers, it allows to perform of parallel testing. Selenium IDE (Integrated Development Environment): This is a Firefox plug-in that allows users to record and playback tests. It is primarily used for creating simple test scripts and for learning Selenium. Selenium WebDriverJS: This is a JavaScript implementation of Selenium WebDriver, it allows developers to write tests using JavaScript. Selenium Wire: It allows to intercept and inspect network traffic, it can be used to debug network issues and analyze the performance of web pages. Selenium Server: This component is used to run Selenium WebDriver scripts on a remote machine, it allows to run of Selenium RC scripts and Selenium Grid. How does Selenium WebDriver interact with web browsers? Selenium WebDriver interacts with web browsers by sending commands to the browser through a driver. The driver is a specific implementation of the WebDriver API for a particular browser. Each browser has a different driver, for example, there is a driver for Chrome, Firefox, and Internet Explorer. Selenium WebDriver sends commands to the browser driver, which then translates those commands into actions that the browser can understand and execute. For example, when Selenium WebDriver sends the command to navigate to a specific website, the browser driver will translate that command into the appropriate actions for the browser, such as opening a new tab, entering the website’s URL, and loading the page. Selenium WebDriver also receives information from the browser driver, such as the page’s source code and the current state of the browser. This information can be used to verify that the browser is in the expected state or to extract information from the page. In summary, Selenium WebDriver uses a browser driver to interact with web browsers. It sends commands to the browser driver which in turn translates them into actions that the browser can understand and execute. And it also receives information from the browser driver to verify the state of the browser or extract information from the page. What are the advantages of using Selenium over other web automation tools? There are several advantages of using Selenium over other web automation tools: Cross-browser compatibility: Selenium supports a wide range of browsers, including Chrome, Firefox, Internet Explorer, Edge, and Safari, so it can be used to automate tests on different browsers. Language support: Selenium supports a variety of programming languages, such as Java, C#, Python, Ruby, JavaScript, and Perl, which allows developers and testers to use the language they are most comfortable with. Open-source: Selenium is an open-source tool which means it’s free to use and developers have access to the source code and can customize it to fit their needs. Large community: Selenium has a large and active community of developers, which means that there are a lot of resources available and that any issues or bugs are likely to be resolved quickly. Integrations: Selenium can be integrated with other tools, such as TestNG and JUnit, for test case management and reporting. Flexibility: Selenium allows for a variety of testing strategies, such as unit testing, integration testing, and end-to-end testing, which makes it a versatile tool for different types of testing needs. Scalability: Selenium Grid allows for the distribution of test execution across multiple machines and different browsers, making it easy to scale up test automation efforts. Support for mobile testing: Selenium can be used to automate tests on mobile devices through the use of additional tools like Appium. In summary, Selenium offers several advantages over other web automation tools, including cross-browser compatibility, language support, being open-source, having a large community, the ability to integrate with other tools, flexibility, scalability, and support for mobile testing. Can you explain the concept of Locators in Selenium and the types of locators available? In Selenium, locators are used to identifying and locate elements on a web page. They are used to specify the element(s) that a test script should interact with. Selenium supports several types of locators, each with its own strengths and weaknesses. ID: ID is the most efficient and reliable way to locate an element. It uses the “id” attribute of an element to locate it. For example, if the element has an id attribute of “username”, then the locator would be “id=username”. Name: It uses the “name” attribute of an element to locate it. For example, if the element has a name attribute of “username”, then the locator would be “name=username”. Class Name: It uses the “class” attribute of an element to locate it. For example, if the element has

CGI Hiring Freshers For Testing Role
Bangalore, Jobs, Manual Testing Job

Manual Testing Jobs For Freshers | CGI

ASE Grad Testing | Bangalore Category: Software Development/ EngineeringMain location: India, Karnataka, BangalorePosition ID: J1122-3003Employment Type: Full TimePosition Description:Skills required is TestingNeed a Graduate with excellent written and oral communication skills;Mmber should be ready to work in the Role which involves shifts and extended hours;BTech Grad required; Skills: What you can expect from us: Insights you can act on While technology is at the heart of our clients’ digital transformation, we understand that people are at the heart of business success. When you join CGI, you become a trusted advisor, collaborating with colleagues and clients to bring forward actionable insights that deliver meaningful and sustainable outcomes. We call our employees “members” because they are CGI shareholders and owners, and, as owners, we enjoy working and growing together to build a company we are proud of. This has been our Dream since 1976, and it has brought us to where we are today—one of the world’s largest independent providers of IT and business consulting services. At CGI, we recognize the richness that diversity brings. We strive to create a work culture where everyone belongs, and we collaborate with clients in building more inclusive communities. As an equal opportunity employer, we empower all our members to succeed and grow. If you require an accommodation at any point during the recruitment process, please let us know. We will be happy to assist. Ready to become part of our success story? Join CGI—where your ideas and actions make a difference. Manual QA Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About CGI Founded in 1976, CGI is among the largest IT and business consulting services firms in the world. We are insights-driven and outcomes-based to help accelerate returns on your investments.

QA Manual in PayTM
Jobs, Manual Testing Job, Noida

Software Test Engineer | PayTM

Title: QA Manual- QA Engineer | Noida About the Team:- PFG Since its inception in 2009, Paytm has established itself as a leading payment platform in India. From the trusted house of Paytm emerges First Games. First Games operate in the space of Real Money Gaming (RMG) offering multiple games like Fantasy Sports, Rummy, Poker & Call Break. First Game’s vision is to create value on the hour’s users spend on gaming, be it entertainment, thrill or rewards. With more than 30Mn+ users & Rs. 1000 Cr. In monthly winnings, First Games has reached greater heights in the past 3 years. About the Role: We are looking for a QA Manual Engineer for Mobile apps and Games. develop a team of mobile and game QA engineers, providing performance feedback, evaluation, and coaching If you are passionate about mobile and web apps with a penchant, we want you! Expectations/Requirements: Superpowers/ Skills that will help you succeed in this role Why join us? Compensation: If you are the right fit, we believe in creating wealth for you With enviable 500 mn+ registered users, 21 mn+ merchants and depth of data in our ecosystem, we are in a unique position to democratize credit for deserving consumers & merchants – and we are committed to it. India’s largest digital lending story is brewing here. It’s your opportunity to be a part of the story! Manual QA Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About Paytm: Paytm is India’s leading digital payments and financial services company, which is focused on driving consumers and merchants to its platform by offering them a variety of payment use cases. Paytm provides consumers with services like utility payments and money transfers, while empowering them to pay via Paytm Payment Instruments (PPI) like Paytm Wallet, Paytm UPI, Paytm Payments Bank Netbanking, Paytm FASTag and Paytm Postpaid – Buy Now, Pay Later. To merchants, Paytm offers acquiring devices like Soundbox, EDC, QR and Payment Gateway where payment aggregation is done through PPI and also other banks’ financial instruments. To further enhance merchants’ business, Paytm offers merchants commerce services through advertising and Paytm Mini app store. Operating on this platform leverage, the company then offers credit services such as merchant loans, personal loans and BNPL, sourced by its financial partners.

Manual Functional Lead In Hotelogix
Jobs, Manual Testing Job, Noida

Software Test Engineer | Hotelogix

QA Engineer | Noida Position Overview You will participate in the testing effort of a leading SaaS product for small and medium sized hotels. He/she will lead the Quality Engineering effort and help to test and critique software components and interfaces in great technical depth, write test frameworks, programs to assure high product quality, and develop advanced test tools to increase productivity and efficiency. Our Ideal Candidate This position is suited for highly energetic self-driven individual who aspires to achieve challenging goals as part of his career objective. We are looking at hiring Principal Quality Engineer for Hotelogix QE team who shall be responsible for conducting Automation ,Functional, Concurrency Job Description Job Requirements Experience: 8-10 yearsSalary: As per Industry normsNo. of Positions: 1 Manual QA Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About Hotelogix Hotelogix was founded in 2008 with a vision to empower hotels across the world with a powerful yet simple technology that can evolve with the current and the future changing market dynamics, helping Hoteliers achieve efficient operations, expanding market reach, increased occupancy and profitability along with the right solution to deliver exceptional guest experiences. Singapore-headquartered Hotelogix, a cloud-based hotel property management system (PMS) company with its subsidiaries in India and the US, Hotelogix PTE has an aggregate customer base spanning 100+ countries, powering 10,000+ hospitality businesses ranging from hotels, hotel groups and chains, large and enterprise resorts, boutique hotels, hostels to aparthotels, campsites, villas, vacation rentals, independents, and domestic chains. Today, Hotelogix is one of the top Hospitality Technology Leaders in the world delivering Cloud Based Hospitality Solutions. As we look to the road ahead, we are proud to stand by our mission to harness the power of data across operations, distribution, and customer experience systems to deliver exceptional value and seamless experience to our hospitality customers on Cloud technology delivering uncompromised application performance.

Manual Functional Lead
Jobs, Manual Testing Job, Noida

Software Test Engineer | Qualitest

Manual Functional Lead | Noida Qualitest is looking for a Test Engineer who will thoroughly inspect our products before they’re launched. As a Test Engineer in our company, you will work closely with the production team to understand why we’re building a product and what the specific requirements are. Then, you will run a series of tests through all stages of production to identify potential malfunctions and recommend improvements. Ultimately, you’ll ensure our final products meet our safety and quality standards. Responsibilities Requirements Looking for Manual Testing + API testing + DB testing experience. Manual QA Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About Qualitest Qualitest provides innovative and scalable business quality engineering solutions that protect your brand through end-to-end value demonstration with laser focus on customer experience and release velocity. Qualitest is celebrating 25 years of innovation and excellence.

Software Testing Jobs In DishTV
Jobs, Manual Testing Job, Noida

Software Test Engineer | DishTV

Software Developer | Manual/Automation Test Engineer | Greater Noida Job Description KEY RESPONSIBILITIES KEY REQUIREMENTS Role: Manual Test EngineerSalary: 7,00,000 – 14,00,000 P.A.Industry: Film / Music / EntertainmentDepartment: Engineering – Software & QARole Category: Quality Assurance and TestingEmployment Type: Full Time, Permanent Manual QA Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About DishTV DishTV India is an Indian satellite television provider based in Noida, Uttar Pradesh with Yes Bank as its biggest stakeholder. DishTV was launched by the Zee Group on 2 October 2003. It ranked #437 and #5 on the list of media companies in the Fortune India 500 roster of India’s largest corporations in 2011.

Testing Jobs In Kolkata
Kolkata, Software Test Engineer

Software Test Engineer | ERM

QA Automation Tester (Mid-Senior Level) | Kolkata ERM is seeking an experienced QA Automation Tester in India to join our global Digital Services business. This position requires experience in web application and database testing to help set-up an Automation testing for a product development team. At ERM, we offer a unique combination of Environmental Health, Safety and Sustainability (EHS&S) and innovative digital solution expertise. Our Digital Services business helps organizations optimize operational performance at an accelerated pace and large scale, and achieve improvements in EHS and sustainability performance through tech-enabled innovation and digital transformation of the enterprise. A core part of the transformation is the digitization of environment, health and safety (EHS) and sustainability systems, making processes more automated, better connected and insightful. We deliver these business outcomes through our global network, EHS and sustainability subject matter expertise and extensive digital capabilities. Our digital services approach integrates Digital Advisory, Digital Systems, and Data Management & Analytics. ERM has enduring values, which are fundamental to our business conduct. We are passionate about our people, their safety, well-being and development. ERMers take accountability, are client focused, and collaborate with colleagues across geographies. If you share our values, believe in sustainability and are motivated by opportunities to shape, build, and contribute to a team that makes a real impact to our client’s businesses, ERM is the right place for you. We offer a flexible working environment and competitive salary. As a senior member on our team, you will be a valuable asset amongst a diverse team of professionals striving to address business growth, daily business operations and innovative technology. You will work within an environment that promotes proactive cooperation and motivates individuals to maintain a positive attitude in order to consistently deliver quality services and technical solutions. RESPONSIBILITIES: REQUIREMENTS: About ERM Manual QA Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information

Testing Jobs In Bangalore
Bangalore, Jobs, Manual Testing Job, Software Testing Jobs In TCS

Functional Tester | TCS

Functional Tester | Bengaluru About the job Role: Functional TesterExperience bracket: 2-4 yearsLocation: Bangalore Job Description: Required Skills: Manual Qa Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About TCS A purpose-led organization that is building a meaningful future through innovation, technology, and collective knowledge. We’re BuildingOnBelief. A part of the Tata group, India’s largest multinational business group, TCS has over 500,000 of the world’s best-trained consultants in 46 countries. The company generated consolidated revenues of US $22.2 billion in the fiscal year ended March 31, 2021, and is listed on the BSE (formerly Bombay Stock Exchange) and the NSE (National Stock Exchange) in India. TCS’ proactive stance on climate change and award-winning work with communities across the world have earned it a place in leading sustainability indices such as the MSCI Global Sustainability Index and the FTSE4Good Emerging Index.

Testing Jobs In Pune
Manual Testing Job, Pune

Manual Testing Jobs In VARCOS | Pune

Manual Test Lead ( US shift) | Pune About the job Greetings from VARCOS, We are hiring for one of our premium client for full time ‘Manual Test Lead ’ ( Hybrid ) Job Title: Manual Test LeadLocation: Viman nagar, Kharadi, Magarpatta Pune (Hybrid)7+ years – US shift timeInterested candidates can share resumes on m.harshada@varcos.in Job Description: · QA / Test Engineer· 6+ years of Testing Expr and must have lead experience too.· Creating Test Plan, Test Scenarios, Test Cases, Test Execution· Knowledge or experience of Linux, Databases and SQL· Knowledge of SDLC & STLC process, defect tracking tool.· Good communication skills Analytical and Logical reasoning· Expr in working with client during UAT phase.· Managing Stakeholder / Customer Expectation· Role involves implementation of Use Case· Manual Qa Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About VARCOS VARCOS believe in Benjamin Franklin’s golden philosophy that “An investment in knowledge pays the best interest”. Especially when the world today is changing at rapid pace driven by technological innovations and advancements, keeping up with the change needs continuous learning approach. Some of the important questions everyone in the field of technology should be asking oneself are – “Are my skills relevant today and tomorrow?”, “How do I improve my skills or learn new ones?” Technological advancements are changing the way business are done, the way applications are written or tested.. it is transforming work forces, work places…almost everything. Similar dilemma is faced by our new generation passing out from colleges. “How do I acquire enough skills so that my employability grows from uncertain to almost certain whenever there is an opportunity?” Employability quotient for our fresh graduates has not been very encouraging. Software Testing has been good career option for many in last few decades, and it will remain so for time to come. But Software Testing has also undergone lot of changes to keep up with Technology changes, Testing has become more Automated (COTs Test Automation Tools and Open Sources tools like Selenium, Jmeter) and more Specialized (Performance , Security and Usability) in nature.. Varcos team is here to help individuals and IT organizations to mitigate the challenges faced by working Test Professionals and Freshers who wants to pursue Testing as Career option. @ VARCOS, VARCOS is a team of seasoned IT professionals with proven careers in Software Testing. VARCOS have cumulative experience of multiple decades in almost all industry domains and all types of Software testing. Varcos team is made up of seasoned Test professionals with solid hands on experience.

Software Testing Jobs In TCS
Pune, Software Testing Jobs In TCS

Software Testing Jobs In TCS | TCS

Selenium Testing Lead | Pune About the job TCS is hiring for Selenium Testing Lead Desired Experience Range: 5-10 YearsLocation: Pune Job Description: Required Skills: Should have experience in the following tools. Interested candidates kindly forward your updated CV to nanditha.1@tcs.com Manual Qa Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information

Software Testing Jobs In Ireland
Dublin, Software Testing Jobs In Ireland

Software Testing Jobs In Ireland | Sogeti

Senior Automation Tester | Dublin At Sogeti Ireland, we work with our clients to deliver solutions that meet their business needs. We are currently seeking a Senior Automation Tester for exciting new opportunities that have arisen. Our Automation Testers are responsible for using technical expertise and problem-solving skills to assist our clients in achieving software quality success. We are seeking an ambitious career tester with a minimum of 3 years’ experience in Test Automation. You will possess good and varied coding skills and a strong passion for learning. Client interaction experience is required, so you will possess excellent client engagement and communication skills and have experience of the full project lifecycle. Good analysis and problem-solving skills along with the ability to work under reasonable pressure is a must. Responsibilities Primary Skills Robot Automation Framework, Salesforce Testing, QA Essential Skills Desirable Skills Sogeti Ireland is an equal-opportunity employer. We promote equality and dignity in all aspects of recruitment and employment, and all offers of employment and promotions are made on the basis of performance, competence and ability. We embrace the value of diversity within Sogeti and the entrepreneurial spirit of our people. If you’re looking to join a company with a proven track record of success and that deeply values its people, Sogeti Ireland offers the opportunity for you to grow and advance. Manual Qa Engineer

Software Testing Jobs In Ireland
Software Testing Jobs In Ireland

Software Testing Jobs In Ireland | Sogeti

Test Lead with Public Sector Experience | Dublin Job description: Sogeti Ireland are looking for a Test Lead with 7+ years’ experience in testing across SDLC/STLC model, public sector platforms and complex architectures. The candidates should have experience of working within public sector domains and testing teams, 3 + years’ experience of leading testing teams for successful deliveries, experience of one or more testing methodologies and exposure to different software development lifecycles including Agile and Waterfall. Key responsibilities: Requirements: Additional information: Sogeti Ireland is an equal opportunity employer. We promote equality and dignity in all aspects of recruitment and employment, and all offers of employment and promotions are made on the basis of performance, competence and ability. We embrace the value of diversity within Sogeti and the entrepreneurial spirit of our people. If you’re looking to join a company with a proven track record of success and that deeply values its people, Sogeti Ireland offers the opportunity for you to grow and advance. Manual Qa Engineer

Software Testing Jobs In Ireland
Software Testing Jobs In Ireland

Software Testing Jobs In Ireland | Sogeti

Mainframe Tester | Dublin Job description Sogeti Ireland are looking for a Mainframe tester with 2+ years’ experience in testing across different STLC models, platforms and architectures. The candidates should have experience of working within mainframe testing teams, 2 years’ experience of batch jobs, mainframe commands and best practices, experience of one or more testing methodologies and exposure to different software development lifecycles including Agile and Waterfall. Benefits include an excellent salary, pension, private health insurance allowance and generous holiday allowance. Key Responsibilities Requirements Additional information Sogeti Ireland is an equal-opportunity employer. We promote equality and dignity in all aspects of recruitment and employment, and all offers of employment and promotions are made on the basis of performance, competence and ability. We embrace the value of diversity within Sogeti and the entrepreneurial spirit of our people. If you’re looking to join a company with a proven track record of success and that deeply values its people, Sogeti Ireland offers the opportunity for you to grow and advance. Manual Qa Engineer | India Get Daily Job Update For Software Testing For QA Manual/Automation Testing From India for Only 59Rs/Month Click Here For More Information

Testing Jobs In Mumbai
Manual Testing Job, Mumbai

Software Test Engineer | Zensoft Services

Manual Tester – Capital market | Zensoft Services | Mumbai About the job Location: Mumbai (Mond to Sat – work from office – Fort Area) Job Description: We are looking for QA Engineer with 2-4 yrs experience in manual testing with mandatory capital market domain experience. Mandatory Skill set: Personality Requirements & Diversity specifications: Good communication and interpersonal skills. Good problem solving and analytical skills, including unstructured problems. Manual Qa Engineer Get Daily Job Update For Software Testing For QA Manual/Automation Testing for Only 59Rs/Month Click Here For More Information About Zensoft Services We are an independent software testing and test automation services company. Excellence, enthusiasm, and passion to envision smart software for a smarter world through disruptive, resilient, and insightful testing and test automation solutions are what describe us best. Driven by industry experts and thought leaders in testing and test automation, we challenged the status quo and continue to deliver early, consistent and sustainable ROI from test automation, for some of the largest software-driven businesses around the world, including Fortune 500 companies.

Scroll to Top