mesudiye_052
Destek Ekibi
- Katılım
- 26 Haz 2022
- Mesajlar
- 207
- Çözümler
- 61
- Aldığı beğeni
- 280
- Excel V
- Office 2016 TR
Merhabalar
Sendkey metodu ile web sayfasına veriyi gönderemiyorum
veriyi kod bloğuna yapıştırıyor.
Nasıl bir kod ilave edebilirim.
Sendkey metodu ile web sayfasına veriyi gönderemiyorum
veriyi kod bloğuna yapıştırıyor.
Nasıl bir kod ilave edebilirim.
Kod:
Sub LoginToWebPage()
Dim internet As Object
Dim adres As String
adres = "https://cloud.fitbulut.com/kullanici/giris"
Set internet = CreateObject("WScript.Shell")
internet.Run "msedge.exe " & adres
Application.Wait Now + TimeValue("00:00:05")
Application.SendKeys "aaahotmail.com"
End Sub