blob: 96866dc7d250c6954940e5b645b5e2a6d8294472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
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() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
	wds.WaitElementLocatedByID(ctx, t, "methods-dialog")
	wds.WaitElementLocatedByID(ctx, t, fmt.Sprintf("%s-option", method)).Click() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
}
  |