Hi,
There're several tools to visualize services (stubs, drivers) and often use for integration testing. Some of them are purely focus on developers, some of them have GUI and more friendly.
In my experience, I use Mockey (https://github.com/clafonta/Mockey) , it's written by Java and have GUI for easy to simulate, trigger the request to see what my application during test cycles.… Continue reading
Author: Phuoc Nguyen
Hi all,
In my current project, we start to develop on Mobile app beside the Web-app. So, I'm curious and want to have your advice about :
1- What's the difference between mobile app vs web-app? When testing mobile app, what're things that we need to focus on?… Continue reading
Hi all,
I'm just curious about the case: "If you joined a team of 10 developers as the only QA engineer and could implement and change any process(es) you’d like, how would you ensure that the team delivers high quality software?"… Continue reading
Hi all,
I’m trying to build a new framework based on Cucumber and Page Object Pattern. Could you please advice me what’s approach based on your experience before doing automation project like:
– What’s the structure of project?
– How can I organize code to be able re-useable for 2 projects (the framework will be applied for other projects but different step_definitions)?… Continue reading
Last week, I was asked this question, they gave the example like this:
Imagine that Google Analytics provide some API services, and as the QC, you want to call these APIs to do testing, but you don't wan't to trigger to these services (it means the servers aren't affected like insert record, updates records or delete records) , what will you do?… Continue reading
I have a site testing for compatibility issues and responsive designs on IE,Chrome,Firefox,Safari.
In Firefox the testing was completed with ease as it had the developer options and there by pressing the Ctrl+m gives you get the different resolution screen.
The same is not applicable for IE,Safari.… Continue reading
Hi all,
I'm having problem when executing the test-script which is designed with Cucumber framework with Java.
I have created step following:
{code}
Feature: Try to login in Testsite
Scenario: Login Successfully
Given User goes to Login Page
When Enter "//*[@id='login-username']" as "userName"
When Enter "//*[@id='login-password']" as "Password"
And Click "div>button.btn.btn-lg.btn-primary.btn-block"… Continue reading
In previously my question, I learned 1 new term to me " Defect density" (DD). So, I gg it and they said that the "Defect density" = Numbers of defect we found / the code size.
My questions are:
1- What're the type of defect we should count on it?… Continue reading
Hi all,
In software development, you might be get familiar with Agile/SCRUM and Agile Testing. As I know, the term Agile typically refers to any approach to project management that strives to unite teams around the principles of collaboration, flexibility, simplicity, transparency, and responsiveness to feedback throughout the entire process of developing a new program or product.… Continue reading