Skip to content

Commit 87624e7

Browse files
committed
Changed pathing
1 parent e2c54c6 commit 87624e7

10 files changed

Lines changed: 25 additions & 26 deletions

File tree

chrome/capabilities.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

example_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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
2222
func Example() {
2323
// Start a Selenium WebDriver server instance (if one is not already
2424
// running).

firefox/capabilities.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
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

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/tebeka/selenium
1+
module github.com/Diggernaut/selenium
22

33
go 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+
)

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfb
4646
github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
4747
github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=
4848
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
49-
github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg=
5049
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
5150
github.com/golang/protobuf v1.3.4 h1:87PNWwrRvUSnqS4dlcBU/ftvOIBep4sYuBLlh6rX2wk=
5251
github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=

internal/seleniumtest/seleniumtest.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

3434
type Config struct {

remote.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

sauce_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

1515
var (

selenium.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package selenium
33
import (
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.

selenium_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

2121
var (

0 commit comments

Comments
 (0)