summaryrefslogtreecommitdiffstats
path: root/pkg/integration/components/actions.go
blob: fb41148909e32f07ffdd27aa834d101728090508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package components

// for running common actions
type Actions struct {
	t *TestDriver
}

func (self *Actions) ContinueMerge() {
	self.t.Views().current().Press(self.t.keys.Universal.CreateRebaseOptionsMenu)

	self.t.ExpectPopup().Menu().
		Title(Equals("Rebase Options")).
		Select(Contains("continue")).
		Confirm()
}

func (self *Actions) ContinueRebase() {
	self.ContinueMerge()
}