Questions tagged [applitools]

Applitools and/or visual testing related topics

Applitools - Automatic Visual Testing

More information can be found at https://applitools.com

Code examples are available at https://applitools.com/resources/tutorial

29 questions
8
votes
3 answers

Program has more than one entry point defined? CS0017 Problem with main()?

When I try an run the code below in visual studio I get the following error : "Program has more than one entry point defined. Compile with /main to specify the type that contains the entry point. " I've tried finding other entry points but am not…
md22
  • 81
  • 1
  • 1
  • 3
3
votes
2 answers

Is cypress support cross browser testing like selenium or are there any limitations

I am wondering is the cypress support many browser types and version to implement cross-browser testing. As they mentioned in their documentation [1] they do support Chrome-family browsers (including Electron) and beta support for Firefox…
3
votes
1 answer

APPlitools: 401 unauthorized is displayed during the execution of checkWindow() function

I used the code below from your website and also provided my APIKEY from my account. The url is launched and the browser size is also set. When the first checkWindow() function executes, I get a 401 Unauthorized exception. using System; using…
johny
  • 51
  • 1
  • 11
2
votes
4 answers

Can not take a full page screenshot in Applitools C#

I'm trying to take a full screen screenshot of my page by using this code: public void OpenEyesForVisualTesting(string testName) { this.seleniumDriver.Driver = this.eyes.Open(this.seleniumDriver.Driver, "Zinc", testName); } public void…
1
vote
1 answer

How to download images with difference highlighted in Applitools?

I am trying to download diff image of base and checkpoint url created by applitools. I found test result handler which does this. Here is the…
1
vote
1 answer

Selenium Applitools swtich Tab/Window for checkpoint

How do I switch the browser tab/window to compare the views in Applitools? Problem is I've got eyes.check on a login window and after loggin in there is a new window opened but the checkpoint compares the old tab/window. Target.window() does not…
1
vote
1 answer

APPLITOOLS_API_KEY env variable is missing

APPLITOOLS_API_KEY env variable is missing. It is required to define this variable for Applitools visual tests to run successfully. Please see the error image here
1
vote
0 answers

Applitools + Specflow+ Selenium + C#

I'm asking for help, I'm already desperate. I made a simple test script with Gherkin and generated the steps. I want to integrate Applitools into this process, that is, to use eyes.Check() method. But no matter how hard I try, every time I…
1
vote
1 answer

Is testing web app with images comparision a good approach?

I was wondering if testing web application based on comparing images of a screenshot is used in the industry and if it's a good approach. Scenario: - model image is taken by hand - test compares only selected parts of an image - test is written in…
bmrki
  • 371
  • 3
  • 15
1
vote
2 answers

java.lang.IllegalStateException: Eyes not open

I'm using Selenium WebDriver 3.0 and AppliToolsEyes 2.54 for selenium-java com.applitools eyes-selenium-java 2.54 For…
Alpha
  • 13,320
  • 27
  • 96
  • 163
0
votes
0 answers

Unable to run @applitools/cypress-eyes against localhost

I am trying to use Applitools eyes with cypress within the Nx ecosystem, however this fails with the following error: CypressError: `cy.visit()` failed trying to load: http://localhost:4200/ We attempted to make an http request to this URL but the…
0
votes
0 answers

Illegal argument error when using Appium eyes from Applitools

I'm trying to implement the basic example shown here on my own code https://applitools.com/tutorials/quickstart/native-mobile/appium/ruby Here is how my code looks: # frozen_string_literal: true require 'eyes_appium' module Raider module…
0
votes
0 answers

How to set Applitools environment variable in Next.js?

I'm trying to set up and run eyes-storybook for my Next.js project but running into this error; Environment variable APPLITOOLS_API_KEY is not set. To fix: Register for Applitools developer account at www.applitools.com/devreg Get API key from…
colinjcason
  • 21
  • 1
  • 2
0
votes
1 answer

Error when reading stories: storybook is loading for too long

I am trying to add applitools/eyes-storybook to run existing storybook visual tests. but getting below error. ⠋ Starting storybook server/Users/testuser/project/node_modules/.bin/start-storybook ✔ Storybook was started ✖ Error when reading stories:…
0
votes
2 answers

Testcafe Applitools typescript - Error: Property 'accessibilityValidation' is missing in type

I'm trying to execute the test script found here https://www.npmjs.com/package/@applitools/eyes-testcafe But am receiving an error on typescript transpile. The script runs succesfully if saved as a .js. test/specs/applitoolsExample.ts:10:19 - error…
1
2