merhaba, python ile dm.txt den içeriği send_keys yapıyorum fakat dm.txt içeriği tek bir harf yazıyor. sorun ne olabilir yardımcı olabilecek?
dm.txt içeriği : Merhaba, @{username} - Kupon Kodu: {random}

with open("dm.txt", "r", encoding="utf-8") as f:
text = f.read()
text_area.send_keys(random.choice(text.format(username = user.strip(), random = random.randint(100000, 999999))))