19 lines
666 B
Python
19 lines
666 B
Python
import time
|
|
from automation import ShopeeBot
|
|
|
|
if __name__ == "__main__":
|
|
# Thay thế bằng IP của điện thoại trong mạng (lấy từ lệnh adb devices)
|
|
DEVICE_IP = '10.160.138.2:5555'
|
|
|
|
bot = ShopeeBot(DEVICE_IP)
|
|
|
|
test_url = "https://vn.shp.ee/tZVnqovi"
|
|
print(f"\n[BẮT ĐẦU] Lấy hoa hồng cho link: {test_url}")
|
|
|
|
# Đoạn này sẽ chạy đúng quy trình: Mở Shopee -> Tôi -> Tiếp Thị Liên Kết -> Chuyển Đổi
|
|
result = bot.get_commission_rate(test_url)
|
|
|
|
print("\n===============================")
|
|
print(f"🎯 KẾT QUẢ: {result}")
|
|
print("===============================\n")
|