offline-twitter/scraper/authentication_test.go
2022-12-30 21:23:45 -05:00

15 lines
247 B
Go

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)
}