File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ import (
1414 "io"
1515 "os"
1616
17+ "github.com/Diggernaut/selenium/internal/zip"
1718 "github.com/golang/protobuf/proto"
1819 "github.com/mediabuyerbot/go-crx3/pb"
19- "github.com/tebeka/selenium/internal/zip"
2020)
2121
2222// CapabilitiesKey is the key in the top-level Capabilities map under which
Original file line number Diff line number Diff line change @@ -6,19 +6,19 @@ import (
66 "strings"
77 "time"
88
9- "github.com/tebeka /selenium"
9+ "github.com/Diggernaut /selenium"
1010)
1111
1212// This example shows how to navigate to a http://play.golang.org page, input a
1313// short program, run it, and inspect its output.
1414//
1515// If you want to actually run this example:
1616//
17- // 1. Ensure the file paths at the top of the function are correct.
18- // 2. Remove the word "Example" from the comment at the bottom of the
19- // function.
20- // 3. Run:
21- // go test -test.run=Example$ github.com/tebeka /selenium
17+ // 1. Ensure the file paths at the top of the function are correct.
18+ // 2. Remove the word "Example" from the comment at the bottom of the
19+ // function.
20+ // 3. Run:
21+ // go test -test.run=Example$ github.com/Diggernaut /selenium
2222func Example () {
2323 // Start a Selenium WebDriver server instance (if one is not already
2424 // running).
Original file line number Diff line number Diff line change 55 "bytes"
66 "encoding/base64"
77
8- "github.com/tebeka /selenium/internal/zip"
8+ "github.com/Diggernaut /selenium/internal/zip"
99)
1010
1111// CapabilitiesKey is the name of the Firefox-specific key in the WebDriver
Original file line number Diff line number Diff line change 1- module github.com/tebeka /selenium
1+ module github.com/Diggernaut /selenium
22
33go 1.12
44
@@ -13,4 +13,4 @@ require (
1313 github.com/google/go-github/v27 v27.0.4
1414 github.com/mediabuyerbot/go-crx3 v1.3.1
1515 google.golang.org/api v0.7.0
16- )
16+ )
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfb
4646github.com/golang/mock v1.2.0 /go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A =
4747github.com/golang/mock v1.3.1 /go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y =
4848github.com/golang/protobuf v1.2.0 /go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U =
49- github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg =
5049github.com/golang/protobuf v1.3.1 /go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U =
5150github.com/golang/protobuf v1.3.4 h1:87PNWwrRvUSnqS4dlcBU/ftvOIBep4sYuBLlh6rX2wk =
5251github.com/golang/protobuf v1.3.4 /go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw =
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ import (
2121 "testing"
2222 "time"
2323
24+ "github.com/Diggernaut/selenium"
25+ "github.com/Diggernaut/selenium/chrome"
26+ "github.com/Diggernaut/selenium/firefox"
27+ "github.com/Diggernaut/selenium/log"
28+ "github.com/Diggernaut/selenium/sauce"
2429 socks5 "github.com/armon/go-socks5"
2530 "github.com/blang/semver"
2631 "github.com/google/go-cmp/cmp"
27- "github.com/tebeka/selenium"
28- "github.com/tebeka/selenium/chrome"
29- "github.com/tebeka/selenium/firefox"
30- "github.com/tebeka/selenium/log"
31- "github.com/tebeka/selenium/sauce"
3232)
3333
3434type Config struct {
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ import (
1717 "strings"
1818 "time"
1919
20+ "github.com/Diggernaut/selenium/firefox"
21+ "github.com/Diggernaut/selenium/log"
2022 "github.com/blang/semver"
21- "github.com/tebeka/selenium/firefox"
22- "github.com/tebeka/selenium/log"
2323)
2424
2525// Errors returned by Selenium server.
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ import (
66 "strings"
77 "testing"
88
9+ "github.com/Diggernaut/selenium"
10+ "github.com/Diggernaut/selenium/internal/seleniumtest"
11+ "github.com/Diggernaut/selenium/sauce"
912 "github.com/blang/semver"
10- "github.com/tebeka/selenium"
11- "github.com/tebeka/selenium/internal/seleniumtest"
12- "github.com/tebeka/selenium/sauce"
1313)
1414
1515var (
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ package selenium
33import (
44 "time"
55
6- "github.com/tebeka /selenium/chrome"
7- "github.com/tebeka /selenium/firefox"
8- "github.com/tebeka /selenium/log"
6+ "github.com/Diggernaut /selenium/chrome"
7+ "github.com/Diggernaut /selenium/firefox"
8+ "github.com/Diggernaut /selenium/log"
99)
1010
1111// TODO(minusnine): make an enum type called FindMethod.
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ import (
1212 "strings"
1313 "testing"
1414
15+ "github.com/Diggernaut/selenium"
16+ "github.com/Diggernaut/selenium/internal/seleniumtest"
1517 "github.com/blang/semver"
1618 "github.com/golang/glog"
17- "github.com/tebeka/selenium"
18- "github.com/tebeka/selenium/internal/seleniumtest"
1919)
2020
2121var (
You can’t perform that action at this time.
0 commit comments