-
-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add file manager --------- Co-authored-by: s.pirohov <[email protected]>
- Loading branch information
1 parent
f348d4e
commit 068aec7
Showing
12 changed files
with
170 additions
and
124 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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
from selenium import webdriver | ||
from selenium.webdriver.chrome.service import Service | ||
|
||
from webdriver_manager.chrome import ChromeDriverManager | ||
|
||
|
||
def test_chrome_manager_with_selenium(): | ||
driver_path = ChromeDriverManager().install() | ||
driver = webdriver.Chrome(driver_path) | ||
driver = webdriver.Chrome(service=Service(driver_path)) | ||
driver.get("http://automation-remarks.com") | ||
driver.close() |
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
from selenium import webdriver | ||
from selenium.webdriver.chrome.service import Service | ||
|
||
from webdriver_manager.chrome import ChromeDriverManager | ||
|
||
|
||
def test_chrome_manager_with_selenium(): | ||
driver_path = ChromeDriverManager().install() | ||
driver = webdriver.Chrome(driver_path) | ||
driver = webdriver.Chrome(service=Service(driver_path)) | ||
driver.get("http://automation-remarks.com") | ||
driver.close() |
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
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.