Try to find text targets in tester::recorder
This commit is contained in:
parent
81d1eda7fe
commit
1923d1db1e
5 changed files with 245 additions and 59 deletions
|
|
@ -129,6 +129,19 @@ impl Interaction {
|
|||
None,
|
||||
)
|
||||
}
|
||||
(
|
||||
Mouse::Click {
|
||||
button,
|
||||
at: Some(click_at),
|
||||
},
|
||||
Mouse::Move(move_at),
|
||||
) if click_at == move_at => (
|
||||
Self::Mouse(Mouse::Click {
|
||||
button,
|
||||
at: Some(click_at),
|
||||
}),
|
||||
None,
|
||||
),
|
||||
(current, next) => {
|
||||
(Self::Mouse(current), Some(Self::Mouse(next)))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue