DEV: Fix the build on github (#28831)

This commit is contained in:
Osama Sayegh 2024-09-11 02:52:23 +03:00 committed by GitHub
parent 91ba2a4aab
commit d760403bfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -16,11 +16,11 @@ module PageObjects
end
def has_banner_image?(upload)
has_css?("img.about__banner[src=\"#{GlobalPath.full_cdn_url(upload.url)}\"]")
has_css?("img.about__banner-img[src=\"#{GlobalPath.full_cdn_url(upload.url)}\"]")
end
def has_no_banner_image?
has_no_css?("img.about__banner")
has_no_css?("img.about__banner-img")
end
def has_members_count?(count, formatted_number)