mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
10 lines
257 B
Go
10 lines
257 B
Go
package suites
|
|
|
|
import "context"
|
|
|
|
func verifyNotificationDisplayed(ctx context.Context, s *SeleniumSuite, message string) {
|
|
txt, err := WaitElementLocatedByClassName(ctx, s, "notification").Text()
|
|
s.Assert().NoError(err)
|
|
s.Assert().Equal(message, txt)
|
|
}
|