SlideShare a Scribd company logo
Visual AI
Enhanced Testing
By Christine Pinto
on Dynamic
Websites
01
DOM is Detached
Where did it go and
how can we deal
with it
Parallel CI Builds
How to combine
them into one test
manager batch
Lazy-Loading
How to win the
battle with lazy-
loading images for a
visual test
02 03
— Shorthand
Beautifully simple
storytelling
Create stunning, immersive
reading experiences in record
time.
Visual AI Enhanced Testing on Dynamic Websites
Lazy-Loading
01 How to win the battle with lazy-
loading images for a visual test
Visual AI Enhanced Testing on Dynamic Websites
Visual test result
with lazy-loading
images
cy.document().then((doc) => {
const height =
doc.body.scrollHeight;
for (let i = 0; i <= height; i += 100) {
cy.scrollTo(0, i);
cy.wait(100);
}
});
Answer: slow scrolling
Another method for slow
scrolling
cy.get("#editor-viewport").then($view => {
for (let i = 10; i <= 100; i += 10) {
let start = i - 10 + "%";
let l = i + "%";
cy.get("#editor-viewport").scrollTo(start, l);
cy.wait(100);
}
});
Visual AI Enhanced Testing on Dynamic Websites
DOM is Detached
02 Where did it go and how can
we deal with it
Element is
detached
from DOM
Cypress queries an element
that was passed from a parent
element, if the element at
some point becomes detached
from the DOM an error is
thrown.
If a tree falls in the forest and
no one has attached a “fall”
event listener, did it really fall?
Discussions and Solutions
● https://github.com/cypress-io/cypress/issues/7306
● https://www.cypress.io/blog/2019/01/22/when-can-the-test-click/
● https://github.com/testing-library/cypress-testing-
library/issues/153#issuecomment-692386444
How to deal with a
detached DOM
import "cypress-pipe";
Cypress.Commands.add("safeClick", { prevSubject: "element" }, $element =>
{
const click = $el => $el.click();
return cy
.wrap($element)
.should("be.visible")
.pipe(click)
.should($el => expect(Cypress.dom.isDetached($el)).to.be.false);
});
Parallel CI Builds
03 How to combine them into one
test manager batch
Visual AI Enhanced Testing on Dynamic Websites
If the CI runs a build
using multiple
concurrent instances,
then it needs to notify
Eyes when all of the
instances have
terminated
Configuration - applitools.config.js
Source:
https://applitools.com/docs/topics/integrations/
github-integration-ci-setup.html#SynchronizeBuilds
// Batch id is a unique identifier of a specific
batch run.
batchId: ID,
dontCloseBatches: true,
Indicate to Applitools when all of the
parallel builds have been completed
curl -d '' -X POST
https://eyesapi.applitools.com/api/externals/github/servers/githu
b.com/commit/$APPLITOOLS_BATCH_ID/complete?apiKey=$APP
LITOOLS_API_KEY
Source: https://applitools.com/blog/google-cloud-
build/
“First do it, then do it
right, then do it
better.”
By Addy Osmani
CREDITS: This presentation template was
created by Slidesgo, including icons by Flaticon,
and infographics & images by Freepik.
THANKS!
Do you have any questions?
pinto.christine@outlook.com
Twitter: @ChrisPint_
https://github.com/ChrisPint
Useful Plugins
● Cypress-real-events
● Cypress-wait-until
● Faker.js
● Mochawesome

More Related Content

What's hot (20)

PDF
Lean Quality & Engineering
Mek Srunyu Stittri
 
PDF
Ship quality mobile apps with speed [Webinar]
BrowserStack
 
PPTX
JavaScript Unit Testing
Keir Bowden
 
PDF
Automated Visual Testing at Scale : Real-life Example from Dow Jones
Applitools
 
PPTX
Lap Around Visual Studio 2010 Ultimate And TFS 2010
Ed Blankenship
 
PDF
Hubware test strategy improvements
Cody Zuschlag
 
PPTX
JavaScript Unit Testing
Keir Bowden
 
PDF
Multiplication and division of calabash tests
Rajdeep Varma
 
PPT
SOASTA Webinar: Process Compression For Mobile App Dev 120612
SOASTA
 
PDF
Playwright: A New Test Automation Framework for the Modern Web
Applitools
 
PDF
Visual Automation Framework via Screenshot Comparison
Mek Srunyu Stittri
 
PDF
Shift left-devoxx-pl
John Ferguson Smart Limited
 
PDF
Quality Jam 2017: Elise Carmichael and Corey Pyle "Jumpstarting Your Test Aut...
QASymphony
 
PDF
Quality Jam 2017: Kevin Dunne "Macro Trends and Useful Tools that 'Get It'"
QASymphony
 
PDF
Don’t Go over the Waterfall: Keep Agile Testing Agile
TechWell
 
PDF
CI in the frontend
Jan Peer Stöcklmair
 
PPTX
Real Devices or Emulators: Wen to use What for Automated Testing
Sauce Labs
 
PDF
Do you even need to automate the GUI?
Matt Heusser
 
PDF
Sitecheckm8 Pres
AzulIT
 
PPTX
Visual Studio LightSwitch (Beta 1) Overview
Steve Lange
 
Lean Quality & Engineering
Mek Srunyu Stittri
 
Ship quality mobile apps with speed [Webinar]
BrowserStack
 
JavaScript Unit Testing
Keir Bowden
 
Automated Visual Testing at Scale : Real-life Example from Dow Jones
Applitools
 
Lap Around Visual Studio 2010 Ultimate And TFS 2010
Ed Blankenship
 
Hubware test strategy improvements
Cody Zuschlag
 
JavaScript Unit Testing
Keir Bowden
 
Multiplication and division of calabash tests
Rajdeep Varma
 
SOASTA Webinar: Process Compression For Mobile App Dev 120612
SOASTA
 
Playwright: A New Test Automation Framework for the Modern Web
Applitools
 
Visual Automation Framework via Screenshot Comparison
Mek Srunyu Stittri
 
Shift left-devoxx-pl
John Ferguson Smart Limited
 
Quality Jam 2017: Elise Carmichael and Corey Pyle "Jumpstarting Your Test Aut...
QASymphony
 
Quality Jam 2017: Kevin Dunne "Macro Trends and Useful Tools that 'Get It'"
QASymphony
 
Don’t Go over the Waterfall: Keep Agile Testing Agile
TechWell
 
CI in the frontend
Jan Peer Stöcklmair
 
Real Devices or Emulators: Wen to use What for Automated Testing
Sauce Labs
 
Do you even need to automate the GUI?
Matt Heusser
 
Sitecheckm8 Pres
AzulIT
 
Visual Studio LightSwitch (Beta 1) Overview
Steve Lange
 

Similar to Visual AI Enhanced Testing on Dynamic Websites (20)

PDF
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
Christopher Schmitt
 
PPTX
Pushing Webperf Limits - We Love Speed 2024.pptx
Tim Vereecke
 
PDF
[psuweb] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
[refreshaustin] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
[refreshpitt] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
[wcatx] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
[drupalcampatx] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
[Austin WordPress Meetup] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
[rwdsummit] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
[HEWEBFL] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PPTX
TDC 2016 - Arquitetura Java - Spring Cloud
Claudio Eduardo de Oliveira
 
PPTX
F&O Summit 2023 Speaker X++ Tips and Tricks.pptx
maheshsrikakulam1
 
PDF
Universal Declarative Services - Simon Chemouil
mfrancis
 
PPTX
Azure from scratch part 4
Girish Kalamati
 
PDF
Advanced iOS Build Mechanics, Sebastien Pouliot
Xamarin
 
PDF
Practical Cloud & Workflow Orchestration
Chris Dagdigian
 
PDF
Serverless DevSecOps: Why We Must Make it Everyone's Problem | Hillel Solow
AWSCOMSUM
 
PDF
[wvbcn] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
PDF
Christopher Schmitt, "Adaptive Images for Responsive Web Design"
WebVisions
 
PDF
[peachpit] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
Christopher Schmitt
 
Pushing Webperf Limits - We Love Speed 2024.pptx
Tim Vereecke
 
[psuweb] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[refreshaustin] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[refreshpitt] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[wcatx] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[drupalcampatx] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[Austin WordPress Meetup] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[rwdsummit] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[HEWEBFL] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
TDC 2016 - Arquitetura Java - Spring Cloud
Claudio Eduardo de Oliveira
 
F&O Summit 2023 Speaker X++ Tips and Tricks.pptx
maheshsrikakulam1
 
Universal Declarative Services - Simon Chemouil
mfrancis
 
Azure from scratch part 4
Girish Kalamati
 
Advanced iOS Build Mechanics, Sebastien Pouliot
Xamarin
 
Practical Cloud & Workflow Orchestration
Chris Dagdigian
 
Serverless DevSecOps: Why We Must Make it Everyone's Problem | Hillel Solow
AWSCOMSUM
 
[wvbcn] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
Christopher Schmitt, "Adaptive Images for Responsive Web Design"
WebVisions
 
[peachpit] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
Ad

More from Applitools (20)

PDF
Code and No-Code Journeys: The Maintenance Shortcut
Applitools
 
PDF
Code and No-Code Journeys: The Coverage Overlook
Applitools
 
PDF
Creating Automated Tests with AI - Cory House - Applitools.pdf
Applitools
 
PDF
Navigating EAA Compliance in Testing.pdf
Applitools
 
PDF
AI-Assisted, AI-Augmented & Autonomous Testing
Applitools
 
PDF
Code or No-Code Tests: Why Top Teams Choose Both
Applitools
 
PDF
The ROI of AI-Powered Testing, presented by Applitools
Applitools
 
PDF
Building No-code Autonomous E2E Tests_Applitools.pdf
Applitools
 
PDF
Conquer 6 Testing Challenges_Applitools.pdf
Applitools
 
PDF
Autonomous End-to-End Testing for Online Banking Applications Presented with ...
Applitools
 
PDF
Playwright Visual Testing Best Practices, presented by Applitools
Applitools
 
PDF
Cross-Browser and Cross-Device Testing | Applitools in Action
Applitools
 
PDF
Advanced Debugging Techniques | Applitools in Action.pdf
Applitools
 
PDF
AI-Powered Testing Strategies for the Seasonal Shopping Surge.pdf
Applitools
 
PDF
Test Automation for Dynamic Applications _ Applitools in Action.pdf
Applitools
 
PDF
Proven Approaches to AI-Powered E2E Testing.pdf
Applitools
 
PDF
Applitools Autonomous 2.0 Sneak Peek.pdf
Applitools
 
PDF
Building the Ideal CI-CD Pipeline_ Achieving Visual Perfection
Applitools
 
PDF
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Applitools
 
PDF
Streamlining Your Tech Stack: A Blueprint for Enhanced Efficiency and Coverag...
Applitools
 
Code and No-Code Journeys: The Maintenance Shortcut
Applitools
 
Code and No-Code Journeys: The Coverage Overlook
Applitools
 
Creating Automated Tests with AI - Cory House - Applitools.pdf
Applitools
 
Navigating EAA Compliance in Testing.pdf
Applitools
 
AI-Assisted, AI-Augmented & Autonomous Testing
Applitools
 
Code or No-Code Tests: Why Top Teams Choose Both
Applitools
 
The ROI of AI-Powered Testing, presented by Applitools
Applitools
 
Building No-code Autonomous E2E Tests_Applitools.pdf
Applitools
 
Conquer 6 Testing Challenges_Applitools.pdf
Applitools
 
Autonomous End-to-End Testing for Online Banking Applications Presented with ...
Applitools
 
Playwright Visual Testing Best Practices, presented by Applitools
Applitools
 
Cross-Browser and Cross-Device Testing | Applitools in Action
Applitools
 
Advanced Debugging Techniques | Applitools in Action.pdf
Applitools
 
AI-Powered Testing Strategies for the Seasonal Shopping Surge.pdf
Applitools
 
Test Automation for Dynamic Applications _ Applitools in Action.pdf
Applitools
 
Proven Approaches to AI-Powered E2E Testing.pdf
Applitools
 
Applitools Autonomous 2.0 Sneak Peek.pdf
Applitools
 
Building the Ideal CI-CD Pipeline_ Achieving Visual Perfection
Applitools
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Applitools
 
Streamlining Your Tech Stack: A Blueprint for Enhanced Efficiency and Coverag...
Applitools
 
Ad

Recently uploaded (20)

PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PDF
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
PDF
Technical-Careers-Roadmap-in-Software-Market.pdf
Hussein Ali
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PDF
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PDF
ERP Consulting Services and Solutions by Contetra Pvt Ltd
jayjani123
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PDF
AOMEI Partition Assistant Crack 10.8.2 + WinPE Free Downlaod New Version 2025
bashirkhan333g
 
PPTX
Build a Custom Agent for Agentic Testing.pptx
klpathrudu
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PDF
Simplify React app login with asgardeo-sdk
vaibhav289687
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
PPTX
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
Technical-Careers-Roadmap-in-Software-Market.pdf
Hussein Ali
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
ERP Consulting Services and Solutions by Contetra Pvt Ltd
jayjani123
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
AOMEI Partition Assistant Crack 10.8.2 + WinPE Free Downlaod New Version 2025
bashirkhan333g
 
Build a Custom Agent for Agentic Testing.pptx
klpathrudu
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
Simplify React app login with asgardeo-sdk
vaibhav289687
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 

Visual AI Enhanced Testing on Dynamic Websites

Editor's Notes

  • #15: Race condition The red flag in this case is that clicking manually after the test has failed works. If the application fails to respond correctly to the “click” event during the Cypress test, but handles the click correctly after, the problem is likely that the application was slow to respond, while Cypress was fast to act. In this case, when the framework shows the calendar modal, it starts attaching the event listeners to the DOM elements. However before the event listeners are attached, Cypress manages to find the DOM element with the required date and click on it. The “click” goes nowhere, since we know: If a tree falls in the forest and no one has attached a “fall” event listener, did it really fall? In our case, there was probably an event listener already attached and ready to process the actual click on a date element (that’s why the date is changing, even if the modal stays open), but no event listener has been attached yet to close the modal. Our test runner is getting ahead of the web application in this particular case.