summaryrefslogtreecommitdiff
path: root/internal/suites/suite_pathprefix_test.go
diff options
context:
space:
mode:
authorAmir Zarrinkafsh <nightah@me.com>2021-11-06 00:14:42 +1100
committerGitHub <noreply@github.com>2021-11-06 00:14:42 +1100
commit83488d52a6dd4b917b8e443f67efcd7db1dd144b (patch)
treeea32d876a17139ee2ffa996361b3badd2c0eaaec /internal/suites/suite_pathprefix_test.go
parent0e8ff3bde972a2e1f637816c4665ed8d6ace38d2 (diff)
refactor(suites): replace selenium with go-rod (#2534)
* refactor(suites): replace selenium with go-rod This change replaces [tebeka/selenium](https://github.com/tebeka/selenium) with [go-rod](https://github.com/go-rod/rod). We no longer have a chromedriver/external driver dependency to utilise Selenium as we instead utilise the Chrome Dev Protocol to communicate with the browser. Rod [documents](https://go-rod.github.io/#/why-rod) benefits of choosing the library as opposed to the available alternatives.
Diffstat (limited to 'internal/suites/suite_pathprefix_test.go')
-rw-r--r--internal/suites/suite_pathprefix_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/suites/suite_pathprefix_test.go b/internal/suites/suite_pathprefix_test.go
index e2dd8a534..098897afe 100644
--- a/internal/suites/suite_pathprefix_test.go
+++ b/internal/suites/suite_pathprefix_test.go
@@ -7,11 +7,11 @@ import (
)
type PathPrefixSuite struct {
- *SeleniumSuite
+ *RodSuite
}
func NewPathPrefixSuite() *PathPrefixSuite {
- return &PathPrefixSuite{SeleniumSuite: new(SeleniumSuite)}
+ return &PathPrefixSuite{RodSuite: new(RodSuite)}
}
func (s *PathPrefixSuite) TestOneFactorScenario() {