mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 03:39:06 +08:00
24 lines
532 B
Ruby
24 lines
532 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Modals
|
|
class DismissNew < PageObjects::Modals::Base
|
|
def has_dismiss_topics_checked?
|
|
find(".dismiss-topics label").has_checked_field?
|
|
end
|
|
|
|
def has_dismiss_posts_checked?
|
|
find(".dismiss-posts label").has_checked_field?
|
|
end
|
|
|
|
def has_untrack_unchecked?
|
|
find(".untrack label").has_no_checked_field?
|
|
end
|
|
|
|
def click_dismiss
|
|
click_button("dismiss-read-confirm")
|
|
self
|
|
end
|
|
end
|
|
end
|
|
end
|