by admin | Mar 12, 2021
Yes, in fact right now it is only available as On-Premise solution.
by admin | Mar 11, 2021
The ‘Default’ mode is an AI mode which works on proprietry algorithms and highlights only visual differences. It would ignore any pixel noise which is not perceivable to human eyes, so it prevent the false positives. This mode is capable of finding even...
by admin | Mar 11, 2021
The ‘Strict’ mode is a non AI mode which gives pixel by pixel comparison. This mode is not recommended for images with frequent pixel changes. To know more about modes please check https://imagium.io/knowledge-base/multiple-modes/
by admin | Mar 11, 2021
To hide the scroll bar inject following java script in your code: document.body.style.overflow = ‘hidden’; IWebDriver driver = new ChromeDriver(); IJavaScriptExecutor js = (IJavaScriptExecutor)driver; driver.Navigate().GoToUrl("https://abc.com");...
by admin | Mar 11, 2021
To taking full page screenshot using Selenium you have to rely on 3rd party libraries like Ashot and Shutterbug. For sample code please check here Every tool has its own mechanism to take full page screenshot. For tools other than selenium please refer its respective...