You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
h/t to oliver.gaida
The code below on Linux but not OSX causes the click block to run during "setup" instead of waiting for a user action to check/uncheck. Use para instead instead of Alert. The bug plus alert can hang Shoes.
Shoes.app do
flow do
check(checked: true).click do |c|
# alert "#{c.checked?}"
para "#{c.checked?}"
end
para "Check 1"
end
para "test"
end
Only happens if when (checked: true). (checked: false) behaves as expected.
The text was updated successfully, but these errors were encountered:
h/t to oliver.gaida
The code below on Linux but not OSX causes the click block to run during "setup" instead of waiting for a user action to check/uncheck. Use para instead instead of Alert. The bug plus alert can hang Shoes.
Shoes.app do
flow do
check(checked: true).click do |c|
# alert "#{c.checked?}"
para "#{c.checked?}"
end
para "Check 1"
end
para "test"
end
Only happens if when (checked: true). (checked: false) behaves as expected.
The text was updated successfully, but these errors were encountered: