authelia/internal/suites/verify_is_consent_page.go

11 lines
191 B
Go

package suites
import (
"context"
"testing"
)
func (wds *WebDriverSession) verifyIsConsentPage(ctx context.Context, t *testing.T) {
wds.WaitElementLocatedByID(ctx, t, "consent-stage")
}