Skip to content

Commit

Permalink
fix: bad package issues
Browse files Browse the repository at this point in the history
  • Loading branch information
F1tZ81 committed Mar 20, 2023
1 parent 6036047 commit 9c9cb6e
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion chrome/capabilities.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

"github.com/golang/protobuf/proto"
"github.com/mediabuyerbot/go-crx3/pb"
"github.com/rmescandon/selenium/internal/zip"
"github.com/F1tZ81/selenium-go/internal/zip"
)

// CapabilitiesKey is the key in the top-level Capabilities map under which
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"github.com/rmescandon/selenium"
"github.com/F1tZ81/selenium-go"
)

// This example shows how to navigate to a http://play.golang.org page, input a
Expand Down
2 changes: 1 addition & 1 deletion firefox/capabilities.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"bytes"
"encoding/base64"

"github.com/rmescandon/selenium/internal/zip"
"github.com/F1tZ81/selenium-go/internal/zip"
)

// CapabilitiesKey is the name of the Firefox-specific key in the WebDriver
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/rmescandon/selenium
module github.com/F1tZ81/selenium-go

go 1.12

Expand Down
10 changes: 5 additions & 5 deletions internal/seleniumtest/seleniumtest.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ import (
socks5 "github.com/armon/go-socks5"
"github.com/blang/semver"
"github.com/google/go-cmp/cmp"
"github.com/rmescandon/selenium"
"github.com/rmescandon/selenium/chrome"
"github.com/rmescandon/selenium/firefox"
"github.com/rmescandon/selenium/log"
"github.com/rmescandon/selenium/sauce"
"github.com/F1tZ81/selenium-go"
"github.com/F1tZ81/selenium-go/chrome"
"github.com/F1tZ81/selenium-go/firefox"
"github.com/F1tZ81/selenium-go/log"
"github.com/F1tZ81/selenium-go/sauce"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"time"

"github.com/blang/semver"
"github.com/rmescandon/selenium/firefox"
"github.com/rmescandon/selenium/log"
"github.com/F1tZ81/selenium-go/firefox"
"github.com/F1tZ81/selenium-go/log"
)

// Errors returned by Selenium server.
Expand Down
6 changes: 3 additions & 3 deletions sauce_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"testing"

"github.com/blang/semver"
"github.com/rmescandon/selenium"
"github.com/rmescandon/selenium/internal/seleniumtest"
"github.com/rmescandon/selenium/sauce"
"github.com/F1tZ81/selenium-go"
"github.com/F1tZ81/selenium-go/internal/seleniumtest"
"github.com/F1tZ81/selenium-go/sauce"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions selenium.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package selenium
import (
"time"

"github.com/rmescandon/selenium/chrome"
"github.com/rmescandon/selenium/firefox"
"github.com/rmescandon/selenium/log"
"github.com/F1tZ81/selenium-go/chrome"
"github.com/F1tZ81/selenium-go/firefox"
"github.com/F1tZ81/selenium-go/log"
)

// TODO(minusnine): make an enum type called FindMethod.
Expand Down
4 changes: 2 additions & 2 deletions selenium_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (

"github.com/blang/semver"
"github.com/golang/glog"
"github.com/rmescandon/selenium"
"github.com/rmescandon/selenium/internal/seleniumtest"
"github.com/F1tZ81/selenium-go"
"github.com/F1tZ81/selenium-go/internal/seleniumtest"
)

var (
Expand Down

0 comments on commit 9c9cb6e

Please sign in to comment.