DEV: Added page object for the login modal (#23017)

This commit is contained in:
Sérgio Saquetim 2023-08-08 18:44:52 -03:00 committed by GitHub
parent 5de86ad7ed
commit 3fcb9a6481
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,11 @@
# frozen_string_literal: true
module PageObjects
module Modals
class Login < PageObjects::Modals::Base
def open?
super && has_css?(".login-modal")
end
end
end
end