This file contains hidden or 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
services: | |
mytests: | |
build: . |
This file contains hidden or 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
org.openqa.selenium.SessionNotCreatedException: Unable to find provider for session: Capabilities {browserName: internet explorer, ensureCleanSession: true, platform: WINDOWS, version: }, Capabilities {browserName: internet explorer, platformName: windows} | |
Build info: version: '4.0.0-alpha-7', revision: '117b9d61c9' |
This file contains hidden or 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
java -jar selenium-server-4.0.0-alpha-6.jar node --detect-drivers true |
This file contains hidden or 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
java -jar selenium-server-4.0.0-alpha-6.jar node --detect-drivers |
This file contains hidden or 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
Expected a value after parameter --detect-drivers |
This file contains hidden or 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
link = driver.find_element_by_xpath('xpath here') | |
url = link.get_attribute('href') |
This file contains hidden or 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
org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. Original error: Url or Uri must start with <scheme>:// |
This file contains hidden or 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
webdriver: Request failed with status 500 due to unknown error: unknown error: Failed to create Chrome process. |
This file contains hidden or 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
WARN webdriver: Request failed with status 500 due to An unknown server-side error occurred while processing the command. Original error: Could not sign with default certificate. Original error Command '/System/Library/Java/bin/java' not found. Is it installed? |
This file contains hidden or 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
import os | |
html = wherever_your_html_is | |
dir_path = os.path.dirname(os.path.realpath(__file__)) | |
filepath = os.path.join(str(dir_path), 'path/you/want/to/put/file') | |
filename = 'rendered_email.html' | |
# Account for if the filepath is not already there. | |
if not os.path.exists(filepath): | |
os.makedirs(filepath) |