mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e67f63ee44
* [CI] Add godot linter * Implement godot recommendations
19 lines
341 B
Go
19 lines
341 B
Go
package suites
|
|
|
|
import (
|
|
"github.com/stretchr/testify/suite"
|
|
"github.com/tebeka/selenium"
|
|
)
|
|
|
|
// SeleniumSuite is a selenium suite.
|
|
type SeleniumSuite struct {
|
|
suite.Suite
|
|
|
|
*WebDriverSession
|
|
}
|
|
|
|
// WebDriver return the webdriver of the suite.
|
|
func (s *SeleniumSuite) WebDriver() selenium.WebDriver {
|
|
return s.WebDriverSession.WebDriver
|
|
}
|