authelia/internal/suites/action_2fa_methods.go
2019-12-05 11:05:24 +01:00

14 lines
349 B
Go

package suites
import (
"context"
"fmt"
"testing"
)
func (wds *WebDriverSession) doChangeMethod(ctx context.Context, t *testing.T, method string) {
wds.WaitElementLocatedByID(ctx, t, "methods-button").Click()
wds.WaitElementLocatedByID(ctx, t, "methods-dialog")
wds.WaitElementLocatedByID(ctx, t, fmt.Sprintf("%s-option", method)).Click()
}