offline-twitter/scraper/authentication_test.go

15 lines
247 B
Go
Raw Normal View History

2022-12-10 14:33:27 -05:00
package scraper_test
import (
"offline_twitter/scraper"
"testing"
)
func TestAuthentication(t *testing.T) {
username := "offline_twatter"
password := "S1pKIW#eRT016iA@OFcK"
api := scraper.NewGuestSession()
api.LogIn(username, password)
}