Pinterest Auto Login Visual Basic Chrome Automation
Judul : Pinterest Auto Login Visual Basic Chrome Automation
link : Pinterest Auto Login Visual Basic Chrome Automation
Pinterest Auto Login Visual Basic Chrome Automation
Untuk mendapatkan TRAFFIC dari Pinterest, KAMU bisa melakukan PIN rutin dari BLOG ke Pinterest.
Kegiatan pin rutin bisa di lakukan dengan BOT kode program OTOMATIS.
Salah satu nya dengan membuat program kode Visual Basic.
Di bawah ini adalah gambar bagaimana cara menyelidiki nama atau id dari komponen HTML dengan nama email, KAMU bisa melakukan hal yang sama dengan komponen password.
Berikut adalah kode LOGIN OTOMATIS ke Pinterest
Imports OpenQA.Selenium
Module Module1
Sub Main()
Dim dvChrome As New Chrome.ChromeDriver
dvChrome.Navigate.GoToUrl("https://www.pinterest.com")
Threading.Thread.Sleep(5000)
'--- <input id="email"
Dim oEmailColl As IList(Of IWebElement) = dvChrome.FindElements(By.TagName("input"))
For Each item In oEmailColl
If item.GetAttribute("id") = "email" Then
Console.WriteLine("email fill:")
item.SendKeys("emailpinterestkamu@gmail.com")
Exit For
End If
Next
Threading.Thread.Sleep(1000)
'--- <input id="password"
Dim oPassColl As IList(Of IWebElement) = dvChrome.FindElements(By.TagName("input"))
For Each item In oPassColl
If item.GetAttribute("id") = "password" Then
Console.WriteLine("password enter")
item.SendKeys("passwordMu")
Exit For
End If
Next
Threading.Thread.Sleep(1000)
Console.WriteLine("login button click")
dvChrome.SwitchTo.ActiveElement.SendKeys(Keys.Tab)
dvChrome.SwitchTo.ActiveElement.SendKeys(Keys.Tab)
dvChrome.SwitchTo.ActiveElement.SendKeys(Keys.Enter)
End Sub
End Module
Demikianlah Artikel Pinterest Auto Login Visual Basic Chrome Automation
Anda sekarang membaca artikel Pinterest Auto Login Visual Basic Chrome Automation dengan alamat link https://gpbn3.blogspot.com/2020/11/pinterest-auto-login-visual-basic.html
Posting Komentar untuk "Pinterest Auto Login Visual Basic Chrome Automation"