0% found this document useful (0 votes)
16 views32 pages

Magebit Demo: Color Data Testing

The document contains code for testing color data from a JSON file. It defines a Color class with name and value properties. It reads color data from a JSON file, parses it into a JSON array, then converts each object into a Color instance and adds it to a list. This list is returned from a data provider to be used for testing by printing each color.

Uploaded by

vuthiquynhvan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views32 pages

Magebit Demo: Color Data Testing

The document contains code for testing color data from a JSON file. It defines a Color class with name and value properties. It reads color data from a JSON file, parses it into a JSON array, then converts each object into a Color instance and adds it to a list. This list is returned from a data provider to be used for testing by printing each color.

Uploaded by

vuthiquynhvan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Buổi 2

[Link]

[Link]

[Link]

package Assignment01.ex3;

import [Link];
import [Link];
import [Link];
import [Link];

import [Link];
import [Link];
import [Link];
import [Link];
public class Testing {
private static final String FIELD_NAME =
"color";
private static final String FIELD_CODE =
"value";

private String jsonColorArr =


"[" +
"{" +
"color: \"red\"," +
"value: \"#f00\"" +
"}," +
"{" +
"color: \"green\"," +
"value: \"#0f0\"" +
"}," +
"{" +
"color: \"blue\"," +
"value: \"#00f\"" +
"}," +
"{" +
"color: \"cyan\"," +
"value: \"#0ff\"" +
"}," +
"{" +
"color: \"magenta\"," +
"value: \"#f0f\"" +
"}," +
"{" +
"color: \"yellow\"," +
"value: \"#ff0\"" +
"}," +
"{" +
"color: \"black\"," +
"value: \"#000\"" +
"}" +
"]";

@DataProvider(name = "provideColorArr")
Object[][] provideColorArr() {
List<Color> colorList = new
ArrayList<Color>();
// JSON array to list
JSONArray colorJsonArr = new
JSONArray(jsonColorArr);
for (int i = 0; i <
[Link](); i++) {
JSONObject colorJsonObj =
[Link](i);
// Get color name
String name =
[Link](FIELD_NAME);
// Get color code
String code =
[Link](FIELD_CODE);
// Create Color object
Color color = new Color(name,
code);
// Add to list
[Link](color);
}

Object[][] colorArr = new


Object[[Link]()][1];
for (int i = 0; i < [Link]; i+
+) {
colorArr[i][0] = [Link](i);
}

return colorArr;
}

@Test(dataProvider = "provideColorArr")
void displayColors(Color color) {

[Link](color);
}

package Assignment01.ex3;

public class Color {


public Color(String color, String value) {
[Link] = color;
[Link] = value;
}

private String color;


public String getColor() {
return color;
}

public void setColor(String color) {


[Link] = color;
}

public String getValue() {


return value;
}

public void setValue(String value) {


[Link] = value;
}

private String value;

@Override
public String toString() {
return "Color{" +
"color='" + color + '\'' +
", value='" + value + '\'' +
'}';
}
}
<!-- [Link] --
><dependency>
<groupId>[Link]</groupId>
<artifactId>json</artifactId>
<version>20210307</version>
</dependency>

package Assignment01.ex3;

import [Link];
import [Link];
import [Link];
import [Link];

import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];

public class Testing {


private static final String FIELD_NAME = "color";
private static final String FIELD_CODE = "value";

private String jsonColorArr =


"[" +
"{" +
"color: \"red\"," +
"value: \"#f00\"" +
"}," +
"{" +
"color: \"green\"," +
"value: \"#0f0\"" +
"}," +
"{" +
"color: \"blue\"," +
"value: \"#00f\"" +
"}," +
"{" +
"color: \"cyan\"," +
"value: \"#0ff\"" +
"}," +
"{" +
"color: \"magenta\"," +
"value: \"#f0f\"" +
"}," +
"{" +
"color: \"yellow\"," +
"value: \"#ff0\"" +
"}," +
"{" +
"color: \"black\"," +
"value: \"#000\"" +
"}" +
"]";

@DataProvider(name = "provideColorArr")
Object[][] provideColorArr() throws IOException {
List<Color> colorList = new ArrayList<Color>();
// JSON array to list
File file = new File("D:\\Training\\FA\\
Automation Test v0.5\\AutoWebSelenium\\src\\main\\
resources\\[Link]");
String json = "";
FileInputStream fileInputStream = new
FileInputStream(file);

int j = [Link]();
while (j != -1){
json = json+ (char)j;
[Link]();
}
JSONArray colorJsonArr = new JSONArray(json);
for (int i = 0; i < [Link](); i++)
{
JSONObject colorJsonObj =
[Link](i);
// Get color name
String name =
[Link](FIELD_NAME);
// Get color code
String code =
[Link](FIELD_CODE);
// Create Color object
Color color = new Color(name, code);
// Add to list
[Link](color);
}

Object[][] colorArr = new


Object[[Link]()][1];
for (int i = 0; i < [Link]; i++) {
colorArr[i][0] = [Link](i);
}

return colorArr;
}

@Test(dataProvider = "provideColorArr")
void displayColors(Color color) {

[Link](color);
}

import [Link];
import [Link];

package Assignment01.ex3;

import [Link];
import [Link];
import [Link];
import [Link];

import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];

public class Testing {


private static final String FIELD_NAME = "color";
private static final String FIELD_CODE = "value";

private String jsonColorArr =


"[" +
"{" +
"color: \"red\"," +
"value: \"#f00\"" +
"}," +
"{" +
"color: \"green\"," +
"value: \"#0f0\"" +
"}," +
"{" +
"color: \"blue\"," +
"value: \"#00f\"" +
"}," +
"{" +
"color: \"cyan\"," +
"value: \"#0ff\"" +
"}," +
"{" +
"color: \"magenta\"," +
"value: \"#f0f\"" +
"}," +
"{" +
"color: \"yellow\"," +
"value: \"#ff0\"" +
"}," +
"{" +
"color: \"black\"," +
"value: \"#000\"" +
"}" +
"]";

@DataProvider(name = "provideColorArr")
Object[][] provideColorArr() throws IOException {
List<Color> colorList = new ArrayList<Color>();
// JSON array to list
File file = new File("D:\\Training\\FA\\Automation Test v0.5\\
AutoWebSelenium\\src\\main\\resources\\[Link]");
String json = "";
FileInputStream fileInputStream = new FileInputStream(file);

int j = [Link]();
while (j != -1){
json = json+ (char)j;
j= [Link]();
}
JSONArray colorJsonArr = new JSONArray(json);
for (int i = 0; i < [Link](); i++) {
JSONObject colorJsonObj = [Link](i);
// Get color name
String name = [Link](FIELD_NAME);
// Get color code
String code = [Link](FIELD_CODE);
// Create Color object
Color color = new Color(name, code);
// Add to list
[Link](color);
}

Object[][] colorArr = new Object[[Link]()][1];


for (int i = 0; i < [Link]; i++) {
colorArr[i][0] = [Link](i);
}

return colorArr;
}

@Test(dataProvider = "provideColorArr")
void displayColors(Color color) {

[Link](color);
}

}
Buổi 3

[Link]

ID Test Case Title TestCase Description Expected Output

1. Navigate to scipioerp login page


successfully
The login page should be displayed:
- username text
- password text
- login button
- forgot password link
1. Open the browser for scipioerp
2. Login successfully
Verify website: [Link]
TC_0 3. The Warehouses page displayed
Warehouses 2. Login with username: admin and password:
1 with some field as belows:
page scipio.
- Create New Warehouses button
3. Click to Warehouses menu item
- Search Options: Warehouse ID,
Warehouse Name, Parent
Warehouse ID, Warehouse Type ID
and Find button.
- Search Results: Warehouse ID,
Warehouse Name, Warehouse Type,
Owner, Area and Description.

4. The Search Results displayed 1


record:
1. Open the browser for scipioerp
 - Warehouse ID:
website: [Link]
ScipioShopWarehouse
Verify 2. Login with username: admin and password:
TC_0 - Warehouse Name : Web Store
Warehouses scipio.
2 Warehouse
Search Results 3. Click to Warehouses menu item
-Warehouse Type : Warehouse
4. Input Warehouse ID is
-Owner : Company
"ScipioShopWarehouse" and click Find button.
-Description: Warehouse exclusively
for the Web Store

[Link]([Link](),"Fail.....");
[Link]

Buổi 4
[Link]

[Link]
[Link]

1. Open the browser for scipioerp


website: [Link]
2. Login with username: admin and password: scipio.
3. Click to Warehouses menu item
6. The
4. Click to the Create New Warehouses button
Verify message
5. Input value to the required field.
Create displayed:
TC_    - Warehouse Type ID: Floor.
New Operation
03    - Parent Warehouse ID: ACCOUNTING
Wareho has been
   - Default Weight Unit: Gram(g)
uses executed
   - Default Inventory Item Type: Serialized.
successfull
   - Name : Test_demo (Random value)
y
   -  Area Unit: Square Millimeter (mm2)
- Product Description: Test Automation
6. Click to the Save button

TC_ Verify 1. Open the browser for scipioerp


04 Inventor website: [Link] 6. The
Inventory
page
displayed
with some
field as
belows:
- New
Inventory
Item
-
Warehous
e ID
- Date
2. Login with username: admin and password: scipio. Time
3. Click to Warehouses menu item Received
4. Search Warehouse ID: ScipioShopWarehouse. - Product
y page 5. Click to the detail on the Search ID
Results([Link] - Internal
facilityId=ScipioShopWarehouse) Name
6. Click to the Inventory menu item -
Inventory
Item ID
- Status
- Serial
Number
- Soft
Identifier
-
Manufactu
rer User ID
- Lot ID
- Find
button.

Verify 1. Open the browser for scipioerp


Create website: [Link] 9. The
TC_ 2. Login with username: admin and password: scipio. page will
New
05 3. Click to Warehouses menu item be
Inventor
y page 4. Search Warehouse ID: ScipioShopWarehouse. displayed
5. Click to the detail on the Search error
Results([Link]
facilityId=ScipioShopWarehouse)
6. Click to the Inventory menu item
message
7. Click to the New Inventory Item
contains:
8. Input value to the required field:
Exception
- InventoryItem Type ID: Serialized
thrown
- Product ID: VH-9943
while
- User ID: ACCOUNTING
creating
- Owner Party ID: ACCOUNTING
the
- Status: Available
"inventoryI
- Date Time Received: 2021-04-29 22:31:18.982
tem"
- Date Time Manufactured: 2021-04-28 22:31:22.380
GenericVal
- Expire Date: 2021-04-16 22:31:24.617.
ue
- Warehouse ID: Web Store Warehouse
9. Click to the Create button.
- Warehouse Location: TLTLTLLL01

8. The
page will
be
1. Open the browser for scipioerp displayed:
website: [Link] - Select
2. Login with username: admin and password: scipio. Contact
3. Click to Warehouses menu item Type
4. Search Warehouse ID: ScipioShopWarehouse. - Create
5. Click to the detail on the Search button
Verify 10. The
TC_ Results([Link]
Settings page will
06 facilityId=ScipioShopWarehouse)
Page be
6. Click to the Settings menu item.
7. Click to the Contact Information menu item. displayed:
8. Click New Contact button - Contact
9. Select Postal Address Purposes
10. Click to the Create button - To Name
11. Input value to the required field. and click to the Save button - Attention
Name
- Address
Line 1
- Address
Line 2
- City
-
State/Prov
ince
-
Zip/Postal
Code
- Country
11. The
message
displayed:
Contact
Mechanis
m
successfull
y created.

[Link]([Link](), "Checkbox
is not display");
[Link]();
Buổi 5
[Link]

[Link]

[Link]
<!-- [Link] --><dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
Test Case
ID TestCase Description Expected Output Result Note
Title

1. Navigate to scipioerp login


page successfully
The login page should be
TC_0 Verify Login 1. Open the browser for scipioerp displayed:
1 Page website: [Link] - username text
- password text
- login button
- forgot password link

1. Navigate to scipioerp login


page successfully
2. The Forgot Your Password
Verify 1. Open the browser for scipioerp page should be displayed
TC_0
Forgot website: [Link] with some fields:
2
Password 2. Click to Forgot Your Password link + username text
+ Go back button
+ Get Password Hint button
+ Email Password button

2. Login successfully and


home page display with
some information:
1. Open the browser for scipioerp + Menu left
TC_0 Verify Home website: [Link] + Gross Sales chart
3 Page 2. Login with valid username & password + Best Selling Products char
(admin/scipio) + Registrations char
+ Last Communication char
+ List Marketing Campaign
char

Buổi 6

[Link]

Admin
Scipio

1. Scroll to Mã Giảm Giá


2. Click to Nội Thất trong phần DANH MỤC NỔI BẬT
3. Nhập khoảng giá sau đó click Áp Dụng
4. Click vào sản phẩm đầu tiên.
5. Kiểm tra giá sản phẩm có nằm trong khoảng vừa nhập ở bước 3.

[Link]

[Link]

Buổi 7

TC_0 Verify Login 1. Open the browser for scipioerp 1. Navigate to login page
successfully
The login page should be
displayed:
website: [Link]
- username combobox
[Link]/admin
1 page - password text
2. input username: ACM 2 & A3M and password: demo123
- signin button
3. Click to Signin button
- forgot password link
2. Login successfully with
Dashboard

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: ACM 2 & A3M and password: demo123
8. The message should
TC_0 Verify create 3. Click to Signin button
be displayed: You saved
2 new Customer 4. Click to the Customers on the left menu.
the customer.
5. Click to the All Customers
6. Click Add New Customer
7. Input the requite field.
8. Click to the Save Customer.

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
7. The Edit customer
2. input username: ACM 2 & A3M and password: demo123
page display.
TC_0 Verify Edit 3. Click to Signin button
8. The first name and
3 Customer 4. Click to the Customers on the left menu.
lastname should be:
5. Click to the All Customers
Marie Delabre
6. Input search key: Marie Delabre
7. Click edit
8. Click to the Account Information

Buổi 8

1. Open the browser for scipioerp 5. The product page


TC_0 Verify  Product website: [Link] should be displayed:
4 page [Link]/admin - Add product button
2. input username: ACM 2 & A3M and password: - Search Key
demo123 - Filters button
3. Click to Signin button - New view
4. Click to the Catalog on the left menu. - Columns
5. Click to the Products - Table listout product.

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: ACM 2 & A3M and password: 6. The search result
TC_0 Verify search 
demo123 display product with
5 Product page
3. Click to Signin button name: Joust Duffle Bag
4. Click to the Catalog on the left menu.
5. Click to the Products
6. Input search key: Joust Duffle Bag and click search

1. Open the browser for scipioerp


website: [Link]
[Link]/admin 7. The edit product
2. input username: ACM 2 & A3M and password: page display:
TC_0 Verify search  demo123 - Product name: Joust
6 Product page 3. Click to Signin button Duffle Bag
4. Click to the Catalog on the left menu. - Price: 34.00
5. Click to the Products - Attribute Set: Bag
6. Input search key: Joust Duffle Bag and click search
7. Click edit product

5. The Product Product


Attributes screen
displayed with some
1. Open the browser for scipioerp
element:
website: [Link]
+ Add New Attribute
[Link]/admin
button
TC_0 Verify Product 2. input username: ACM 2 & A3M and password:
+ Search button
7 Attributes page demo123
+ Reset Filter link
3. Click to Signin button
+ Product Attribute
4. Click to the Store on the left menu.
table
5. Click to the Product
+ Product Attribute
table display 20 rows
data.
6. The Add New
Attribute displayed with
some field:
+ Default Label text
+ Catalog Input Type
for Store Owner
1. Open the browser for scipioerp
combobox
website: [Link]
+ Values Required
[Link]/admin
combobox
2. input username: ACM 2 & A3M and password:
Verify Add New 7. Advanced Attribute
TC_0 demo123
Product Attributes Properties display with
8 3. Click to Signin button
page some field:
4. Click to the Store on the left menu.
+ Attribute Code
5. Click to the Product
+ Scope
6. Click to the Add New Attribute button
+ Default Value
7. Advanced Attribute Properties
+ Unique Value
+ Input Validation for
Store Owner
+ Add to Column
Options
+ Use in Filter Options

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: ACM 2 & A3M and password:
demo123
Verify Create New 3. Click to Signin button 8. Verify the message :
TC_0
Product Attributes 4. Click to the Store on the left menu. You saved the product
9
successfully 5. Click to the Product attribute.
6. Click to the Add New Attribute button
7. Input Default Label
Catalog Input Type for Store Owner: text editor
Values Required: No
8. Click to the Save

1. Open the browser for scipioerp 6. The only one row


TC_1 Verify Search website: [Link] with Attribute Code
0 Product Attributes [Link]/admin display.
2. input username: ACM 2 & A3M and password: 7. Verify Default Label is
demo123 : Color
3. Click to Signin button
4. Click to the Store on the left menu.
5. Click to the Product
6. Input Attribute Code: color
7. Click to the row

[Link]

[Link]
421588772d0f4ed1e26943643ae4ab795f25d39aaed00090a997f297f6d33924/

[Link]

– Link: [Link]

– Username: magebit

– Password: Demo123

Buổi 9

[5/31/2021 8:11 PM] Nguyen Son Lam ([Link])


TCID Description Username Password Message

1 admin scipio

2 admin Password was empty, please re-enter.

3 scipio Username was empty, please re-enter.

4 admin1 scipio1 following error occurred during login: User or password incorrect.

[Link]

Verify Grand Total 1. Open the browser for scipioerp


TC_11 website: [Link] 6. Verify Grand Total is $39.64
Orders Page
[Link]/admin
2. input username: magebit and password:
Demo123
3. Click to Signin button
4. Click to the Sales -> Orders on the left
menu.
5. input search key : 000000002
6. click to the search result

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Verify Grand Total Demo123
TC_12 6. Verify Grand Total is $36.39
Orders Page 3. Click to Signin button
4. Click to the Sales -> Orders on the left
menu.
5. input search key : 000000001
6. click to the search result

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Demo123
3. Click to Signin button
4. Click to the Sales -> Orders on the left
menu.
5. The list of customer display
5. Click to the Create New Order
Verify product name 9. Verify product name added to
6. Select first customer
TC_13 added to the Items Items Ordered
7. Click to the Add Products
Ordered 10. Verify message "You created
8. Search and Select 4 products
order." and Grand Total is $2,888
 - Erika Running Short-32-Green
 - Erika Running Short-32-Purple
 - Erika Running Short-32-Red
 - ProdI-Conf
9. Click to the Add Selected Product(s) to
Order
10. Add Shipping Method: Table Rate
10. Click to submit order

TC_14 Verify required field 1. Open the browser for scipioerp 6. The message for earch required
website: [Link]
[Link]/admin
2. input username: magebit and password:
Demo123
should be displayed: This is a req
New Catalog Price Rule 3. Click to Signin button
field.
4. Click to the Marketing -> Catalog Price Rule
on the left menu.
5. click to Add New Rule
6. Click Save button

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Demo123
3. Click to Signin button
4. Click to the Marketing -> Catalog Price Rule 7. The message for  Discount Am
Verify required field
TC_15 on the left menu. field should be displayed: This is
New Catalog Price Rule
5. click to Add New Rule required field.
6.
 + Input  Rule Name: test
 +  Active: Yes
 + Websites : Main Website
 + Customer Groups : General
7. Click Save button

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Demo123
3. Click to Signin button
Verify required field 4. Click to the Marketing -> Catalog Price Rule 7. The message for Discount Amo
TC_16 field should be displayed: The val
New Catalog Price Rule on the left menu.
5. click to Add New Rule not within the specified range.
6.
 + Input  Rule Name: test
 +  Active: Yes
 + Websites : Main Website
 + Customer Groups : General
 + Discount Amount: test
6. Click Save button

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Demo123
3. Click to Signin button
4. Click to the Marketing -> Catalog Price Rule
Verify create New on the left menu. 7. The message should be display
TC_17
Catalog Price Rule 5. click to Add New Rule saved the rule.
6.
 + Input  Rule Name: test
 +  Active: Yes
 + Websites : Main Website
 + Customer Groups : General
 + Discount Amount: 10
7. Click Save button

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Verify required field 6. The message for earch required
Demo123
TC_18 New Related Products should be displayed: This is a req
3. Click to Signin button
Rule field.
4. Click to the Marketing -> Related Products
Rules on the left menu.
5. click to Add New Rule
6. Click Save button

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Verify required field Demo123 7. The message for  Apply To field
TC_19
New Catalog Price Rule 3. Click to Signin button be displayed: This is a required fie
4. Click to the Marketing -> Related Products
Rules on the left menu.
5. click to Add New Rule
6.
 + Input  Rule Name: test
 +  Status: Yes
7. Click Save button

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Demo123
3. Click to Signin button
Verify create New 4. Click to the Marketing -> Related Products 7. The message should be display
TC_19
Catalog Price Rule Rules on the left menu. saved the rule.
5. click to Add New Rule
6.
 + Input  Rule Name: test
 +  Status: Yes
+ Apply To: Related Products
7. Click Save button

1. Open the browser for scipioerp


website: [Link]
[Link]/admin 5. Verify elements displayed:
2. input username: magebit and password: + Web Site
Verify the Store
TC_20 Demo123 + Name
Information page
3. Click to Signin button + Code
4. Click to the Stores -> All Stores on the left + Root Category
menu.
5. Click to the Create Store.

1. Open the browser for scipioerp


website: [Link]
[Link]/admin
2. input username: magebit and password:
Demo123
Verify create new Store 3. Click to Signin button
TC_21 7. Verify message should be disp
Information 4. Click to the Stores -> All Stores on the left
You saved the store.
menu.
5. Click to the Create Store.
6. Input : Web Site, Name, Code and Root
Category
7. click Save
[Link]

Link TC

[Link]

[Link]

Username: admin – Password: admin123

[Username: admin – Password: admin123

[Link]

ID Test Case Title TestCase Description Expected Output


1. Open tiki app
TC0 Verify default 3. The default category display: Thịt, Bơ
2. Scroll to the "Đi Chợ Online"
1 category sữa & Trứng, Hải Sản, Rau Củ quả.
3. Click to the "Đi Chợ Online"
1. Open tiki app
2. Scroll to the "Đi Chợ Online"
3. Click to the "Đi Chợ Online"
4. Click to the "Rau Củ Quả" category
TC0 Verify number
5. Click to the "Rau Củ Quả Xanh" 8. The number of product is 1
2 of product
6. Select Cửa Hàng: Tramanhfood
7. Click Lọc sản phẩm and select:
'- Đánh giá: 5 Sao
8. Click xem sản phẩm
1. Open tiki app
2. Scroll to the "Đi Chợ Online"
3. Click to the "Đi Chợ Online"
4. Click to the "Rau Củ Quả" category
TC0 Verify number
5. Click to the "Rau Củ Quả Xanh" 8. The number of product is 25
3 of product
6. Select Cửa Hàng: Organicfood
7. Click Lọc sản phẩm and select:
'- Đánh giá: 5 Sao
8. Click xem sản phẩm
TC0 Verify number 1. Open tiki app 8. The number of product is 4
2. Scroll to the "Đi Chợ Online"
3. Click to the "Đi Chợ Online"
4. Click to the "Rau Củ Quả" category
5. Click to the "Rau Củ Quả Xanh"
4 of product
6. Select Cửa Hàng: Organicfood
7. Click Lọc sản phẩm and select:
'- Đánh giá: 5 Sao
8. Click xem sản phẩm
1. Open tiki app
2. Click to Danh Mục
3. Scroll and click to the "Thiết bị số - Phụ
kiện số"
4. Click Loa Nghe Nhạc
TC0 Verify Login
5. Click to the Loa Bluetooth 9. The login screen should be display
5 screen
6. Fillter product by "Hàng Mới", Đánh Giá
5 sao and product price < 300.000
7. Click xem sản phẩm
8. Click first product
9. Click chọn mua sản phẩm

You might also like