DEV: remove pseudo-class selector in chat channel page object (#25399)
The channels-list div is only rendered once now so the :first-child pseudo-class can be removed.
This commit is contained in:
parent
8b44270929
commit
85d74ec8bf
|
@ -6,7 +6,7 @@ module PageObjects
|
|||
class ChannelIndex < PageObjects::Components::Base
|
||||
attr_reader :context
|
||||
|
||||
SELECTOR = ".channels-list:first-child"
|
||||
SELECTOR = ".channels-list"
|
||||
|
||||
def initialize(context = nil)
|
||||
@context = context
|
||||
|
|
Loading…
Reference in New Issue