Nếu bạn chỉ có nhu cầu 1 thread – 1 row thì chỉ cần sử dụng CSV Data Set Config nhưng nếu bạn cần đọc 1 thread – xxx rows thì bạn phải code thôi. Code như thế nào thì… Read more
Có lẽ đây là 1 trong những yêu cầu thường được đưa ra trong dự án lúc làm performance test. Ví dụ:
100 người cùng login1000 users cùng submit form…
Để setup được trên Jmeter, các bạn cần phải sử… Read more
I. Sự khác biệt giữa HTTP và HTTPS
Như bài này, các bạn đã biết HTTP là giao thức để trao đổi thông tin. Tuy nhiên vấn đề là thông tin sẽ có thể bị “xem trộm” hay còn gọi… Read more
Copy image from https://viblo.asia/
For java_intermediate course. https://giangtester.com/khoa-hoc-java-intermediate/
I. Collection
is a “bag” = unordered listsNo direct implementation
Collection<String> names = new ArrayList<>();
- Add one element
names.add("john");
System.out.println(names); //[john]
- Add multiple elements
names.addAll(List.of("james, harry"));
System.out.println(names); //[james, harry]
-----------------------------------------
URL (Uniform Resource Locator) là địa chỉ duy nhất của 1 resource trên 1 remote server.
Cấu tạo của 1 URL như sau:
image lấy từ sách the tangled web
1. Scheme – Protocol (bắt buộc)
Protocol: 1 đoạn String,… Read more
I. Chuẩn bị
1.Update lên cypress mới nhất (ở thời điểm này là 9.2.1)
npm install --save-dev cypress@9.2.1
2. Open cypress window
Cách 1:
npx cypress open
Cách 2:
Sửa file package.json
"scripts": {
"cp:open": "cypress open"
}
Run:
npm… Read more
I. Mở bài
Có nhiều TH chúng ta muốn lấy thông tin từ json của response, chúng ta có thể
Dùng JsonPath để tách lấy 1 hoặc nhiều valueMapping json sang POJO để lấy nhiều value cùng lúc.
II. Cách… Read more
Image copy from https://www.fulltimenomad.com/
I. Khóa học Java Rest-Assured (API Automation Test)
https://giangtester.com/lop-api-automation-test/
II. Khóa học Performance Test
Khóa học performance test basic: https://giangtester.com/khoa-hoc-performance-test-su-dung-jmeter/
Khóa học K6 (dự kiến 6/2025)
Khóa học performance test advance (dự kiến 12/2025) : https://giangtester.com/khoa-hoc-performance-test-advance/… Read more