tests: use root.fake_input instead of xdotool
Ref: https://github.com/awesomeWM/awesome/issues/328. Closes: https://github.com/awesomeWM/awesome/pull/391.
This commit is contained in:
parent
baeb8fd2b5
commit
2b224dd954
|
@ -46,7 +46,10 @@ local steps = {
|
||||||
function(count)
|
function(count)
|
||||||
if count == 1 then
|
if count == 1 then
|
||||||
-- Setup: switch to tag.
|
-- Setup: switch to tag.
|
||||||
os.execute('xdotool key super+2')
|
root.fake_input("key_press", "Super_L")
|
||||||
|
root.fake_input("key_press", "2")
|
||||||
|
root.fake_input("key_release", "2")
|
||||||
|
root.fake_input("key_release", "Super_L")
|
||||||
|
|
||||||
elseif awful.tag.selectedlist()[1] == tags[1][2] then
|
elseif awful.tag.selectedlist()[1] == tags[1][2] then
|
||||||
assert(#client.get() == 1)
|
assert(#client.get() == 1)
|
||||||
|
|
Loading…
Reference in New Issue