Version 4 of Eyes-Selenium for Python is a completely new SDK, and has a few changes that are important to know, if you are migrating from v3 to v4, or even if it is your first time using Eyes-Selenium for Python.
Packages
Version 3
- eyes-selenium
Version 4
- eyes-selenium
- eyes-common
- eyes-core
Import statements
Version 3
from applitools.eyes import Eyes, BatchInfo
from applitools import logger, StdoutLogger
Version 4
from applitools.selenium import Eyes, Target
from applitools.common import logger, StdoutLogger, BatchInfo
Check API
Version 3
- Classic API: check_window(), check_region()
Version 4
- Classic API: check_window(), check_region()
- Fluent API: check()
Click here to learn more about the Fluent API.