Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Test is rerun multiple times when stitch mode is CSS #45

Open
namnhatdoan opened this issue Jul 12, 2019 · 1 comment
Open

Test is rerun multiple times when stitch mode is CSS #45

namnhatdoan opened this issue Jul 12, 2019 · 1 comment

Comments

@namnhatdoan
Copy link

When I run below script, a lot of threads are created continuously and rerun the script.

from applitools.selenium import Eyes, StitchMode
from selenium.webdriver import Chrome
from selenium.webdriver.chrome.options import Options

eyes = Eyes()
eyes.api_key = '<my_api_key_here>'
eyes.force_full_page_screenshot = True
eyes.stitch_mode = StitchMode.CSS

try:
    driver = Chrome()
    eyes.open(driver, "My Project", "Test")
    driver.get('http://www.google.com')
    eyes.check_window("Home page")
finally:
    driver.close()
    eyes.abort_if_not_closed()

Currently I am using Python 3.7.3, eyes-selenium==3.16.2.

@eirenik0
Copy link
Member

@namnhatdoan it's know bug on windows OS. Before fix, you could suspend by adding eyes.send_dom = False . Sorry for late response. It would be fixed in 4.x sdk

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants