-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' of https://github.com/SeleniumHQ/selenium into t…
…runk
- Loading branch information
Showing
56 changed files
with
2,598 additions
and
1,685 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$schema": "https://aka.ms/codetour-schema", | ||
"title": "Bazel", | ||
"steps": [ | ||
{ | ||
"file": "WORKSPACE", | ||
"description": "This is the main file creating the Bazel Workspace for this repository", | ||
"line": 1 | ||
}, | ||
{ | ||
"file": "WORKSPACE", | ||
"description": "These are the packages that support our rules and give us the extra functionality that we can use. There are a number of imported rules for different programming languages and extra features we need", | ||
"line": 11 | ||
}, | ||
{ | ||
"file": "BUILD.bazel", | ||
"description": "These are aliases to some of the most common build targets. To build a target you can run `bazel build <alias>` e.g. `bazel build grid`", | ||
"line": 14 | ||
} | ||
], | ||
"ref": "trunk" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"$schema": "https://aka.ms/codetour-schema", | ||
"title": "Building and Testing the Python Bindings", | ||
"steps": [ | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "Files, like this, can be found all over this repository and will have all the targets that we need. To access this file with bazel you will need to use bazel build|test|run //py:<targets below>", | ||
"line": 7 | ||
}, | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "This is how we create the python library that will be used", | ||
"line": 69 | ||
}, | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "This creates the Selenium wheel that is published. We can upload it with `twine`", | ||
"line": 110 | ||
}, | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "This creates the targets we need when we want to use \"pinned browsers\". Using \"pinned browsers\" means bazel will download the necessary browser and the corresponding driver. To use this target you will do `bazel test //py:auto-<browser name> --//common:pin_browsers`", | ||
"line": 229 | ||
}, | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "If you want to use targets that have the installed browser and the driver on the $PATH environment variables", | ||
"line": 255 | ||
}, | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "This target is called from other targets and will generate the CDP libraries that we use within the Selenium Python Bindings", | ||
"line": 186 | ||
}, | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "These are the dependencies for building and testing", | ||
"line": 17 | ||
}, | ||
{ | ||
"file": "py/BUILD.bazel", | ||
"description": "Below are the JavaScript atoms we use for certain features like checking if an element if visible.", | ||
"line": 38 | ||
} | ||
], | ||
"ref": "trunk" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.