authelia/internal/suites/verify_is_first_factor_page.go

11 lines
200 B
Go

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