2023-02-22 02:38:54 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module PageObjects
|
|
|
|
module Components
|
|
|
|
class Dialog < PageObjects::Components::Base
|
2023-07-16 20:14:17 -04:00
|
|
|
def closed?
|
|
|
|
has_no_css?(".dialog-container")
|
|
|
|
end
|
|
|
|
|
|
|
|
def open?
|
|
|
|
has_css?(".dialog-container")
|
|
|
|
end
|
|
|
|
|
2023-02-22 02:38:54 -05:00
|
|
|
def has_content?(content)
|
|
|
|
find(".dialog-container").has_content?(content)
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_yes
|
|
|
|
find(".dialog-footer .btn-primary").click
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_no
|
|
|
|
find(".dialog-footer .btn-default").click
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|