diff options
| author | Amir Zarrinkafsh <nightah@me.com> | 2021-11-06 00:14:42 +1100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-06 00:14:42 +1100 | 
| commit | 83488d52a6dd4b917b8e443f67efcd7db1dd144b (patch) | |
| tree | ea32d876a17139ee2ffa996361b3badd2c0eaaec /internal/suites/suite_pathprefix_test.go | |
| parent | 0e8ff3bde972a2e1f637816c4665ed8d6ace38d2 (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.go | 4 | 
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() {  | 
