discourse/spec/system/page_objects/modals/dismiss_new.rb
Krzysztof Kotlarek af74cf5c77
FEATURE: new dismiss button for combined new and unread view (#21817)
Display modal for combined new and unread view with options:
- [x] Dismiss new topics
- [x] Dismiss new posts
- [ ] Stop tracking these topics so they stop appearing in my new list
2023-06-07 10:06:57 +10:00

20 lines
439 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
end
end
end