We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have issue in my project https://github.com/Apkawa/xlsx2html/blob/bf85665476f0f3f453a1115f5d9f6bf967730085/tests/test_files.py#L119
Locally is ok, on ci fail test
def test_screenshot_diff(temp_file, browser, screenshot_regression): browser.driver.set_window_size(1280, 1024) out_file = temp_file() xlsx2html(XLSX_FILE, out_file, locale="en") browser.visit("file://" + out_file) # Wait loading page from selenium.webdriver.support.wait import WebDriverWait WebDriverWait(browser, timeout=10).until(page_has_loaded) time.sleep(1) # Debug CI print("Window size", browser.driver.get_window_size()) screenshot_file = temp_file(extension=".png") browser.driver.save_screenshot(screenshot_file) im = Image.open(screenshot_file) assert im.size == (1280, 1024) # End debug CI screenshot_regression()
I dunno can be fixed
SeleniumHQ/selenium#14660
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Have issue in my project https://github.com/Apkawa/xlsx2html/blob/bf85665476f0f3f453a1115f5d9f6bf967730085/tests/test_files.py#L119
Locally is ok, on ci fail test
I dunno can be fixed
SeleniumHQ/selenium#14660
The text was updated successfully, but these errors were encountered: