mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9 lines
232 B
Go
9 lines
232 B
Go
package suites
|
|
|
|
import "context"
|
|
|
|
func verifyBodyContains(ctx context.Context, s *SeleniumSuite, pattern string) {
|
|
bodyElement := WaitElementLocatedByTagName(ctx, s, "body")
|
|
WaitElementTextContains(ctx, s, bodyElement, pattern)
|
|
}
|