mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 13:16:09 +10:00
7 lines
198 B
Ruby
7 lines
198 B
Ruby
module JsPatch
|
|
def confirm_js_popup
|
|
page.evaluate_script("window.alert = function(msg) { return true; }")
|
|
page.evaluate_script("window.confirm = function(msg) { return true; }")
|
|
end
|
|
end
|