-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[py] Update extension in the tests to use the common extensions (#10478)
* [py] Update extension in the tests to use the common extensions Removes C-py tag from #10266 * fix: updated py BUILD.bazel merge issue Co-authored-by: Puja Jagani <[email protected]>
- selenium-4.29.0
- selenium-4.28.1-python
- selenium-4.28.1-javascript
- selenium-4.28.1-java
- selenium-4.28.0
- selenium-4.27.1-python
- selenium-4.27.0
- selenium-4.26.1-python
- selenium-4.26.1-dotnet
- selenium-4.26.0
- selenium-4.25.0
- selenium-4.24.1-javascript
- selenium-4.24.0
- selenium-4.23.1-python
- selenium-4.23.1-java
- selenium-4.23.0
- selenium-4.22.0
- selenium-4.21.1-ruby
- selenium-4.21.0
- selenium-4.20.1-ruby
- selenium-4.20.0
- selenium-4.19.1-java
- selenium-4.19.0
- selenium-4.18.1
- selenium-4.18.0
- selenium-4.17.2-python
- selenium-4.17.1-python
- selenium-4.17.0
- selenium-4.16.2-dotnet
- selenium-4.16.1-java
- selenium-4.16.1-dotnet
- selenium-4.16.0
- selenium-4.15.2-python
- selenium-4.15.1-python
- selenium-4.15.0
- selenium-4.14.1-java
- selenium-4.14.1-dotnet
- selenium-4.14.0
- selenium-4.13.1-ruby
- selenium-4.13.1-dotnet
- selenium-4.13.0
- selenium-4.12.4-dotnet
- selenium-4.12.3-dotnet
- selenium-4.12.2-dotnet
- selenium-4.12.1-java
- selenium-4.12.1-dotnet
- selenium-4.12.0
- selenium-4.11.2-python
- selenium-4.11.1-python
- selenium-4.11.1-javascript
- selenium-4.11.0
- selenium-4.10.0
- selenium-4.9.2-javascript
- selenium-4.9.1
- selenium-4.9.0
- selenium-4.8.6-ruby
- selenium-4.8.5-ruby
- selenium-4.8.4-ruby
- selenium-4.8.3-ruby
- selenium-4.8.3-python
- selenium-4.8.3-java
- selenium-4.8.2-ruby
- selenium-4.8.2-python
- selenium-4.8.2-javascript
- selenium-4.8.2-java
- selenium-4.8.2-dotnet
- selenium-4.8.1
- selenium-4.8.0
- selenium-4.7.2-python
- selenium-4.7.2-java
- selenium-4.7.1-ruby
- selenium-4.7.1-python
- selenium-4.7.1-java
- selenium-4.7.0
- selenium-4.6.1-ruby
- selenium-4.6.1-python
- selenium-4.6.1-javascript
- selenium-4.6.0
- selenium-4.5.3-java
- selenium-4.5.2-java
- selenium-4.5.1-java
- selenium-4.5.1-dotnet
- selenium-4.5.0
- selenium-4.4.2-python
- selenium-4.4.1-python
- selenium-4.4.0
- selenium-4.3.1-javascript
- selenium-4.3.0
- selenium-4.2.2-java
- selenium-4.2.1-ruby
- selenium-4.2.1-java
- selenium-4.2.0
- selenium-4.1.4-python
- selenium-4.1.4-java
- selenium-4.1.2-javascript
- nightly
Showing
3 changed files
with
11 additions
and
9 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 |
---|---|---|
|
@@ -22,23 +22,23 @@ | |
|
||
def test_install_addon_temporary(driver): | ||
extension = os.path.join(os.path.dirname(os.path.abspath(__file__)), | ||
'favourite_colour-1.1-an+fx.xpi') | ||
'webextensions-selenium-example.xpi') | ||
|
||
id = driver.install_addon(extension, True) | ||
assert id == '[email protected]' | ||
assert id == '[email protected]' | ||
|
||
|
||
def test_install_addon(driver): | ||
extension = os.path.join(os.path.dirname(os.path.abspath(__file__)), | ||
'favourite_colour-1.1-an+fx.xpi') | ||
'webextensions-selenium-example.xpi') | ||
|
||
id = driver.install_addon(extension, False) | ||
assert id == '[email protected]' | ||
assert id == '[email protected]' | ||
|
||
|
||
def test_uninstall_addon(driver): | ||
extension = os.path.join(os.path.dirname(os.path.abspath(__file__)), | ||
'favourite_colour-1.1-an+fx.xpi') | ||
'webextensions-selenium-example.xpi') | ||
|
||
id = driver.install_addon(extension) | ||
try: | ||
|