{"id":34261,"date":"2022-02-09T13:30:32","date_gmt":"2022-02-09T21:30:32","guid":{"rendered":"https:\/\/app14743.cloudwayssites.com\/?p=34261"},"modified":"2022-03-21T06:17:14","modified_gmt":"2022-03-21T13:17:14","slug":"cross-browser-testing-cypress-workshop-qa","status":"publish","type":"post","link":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/","title":{"rendered":"Cross Browser Testing with Cypress Workshop Q&#038;A"},"content":{"rendered":"\n<p>On February 1, 2022, I gave a webinar entitled <a href=\"http:\/\/applitools.info\/hgk\">Cross Browser Testing with Cypress<\/a>, in which I explained how to run Cypress tests against any browser using Applitools Visual AI and the <a href=\"https:\/\/app14743.cloudwayssites.com\/product-ultrafast-test-cloud\/\">Ultrafast Test Cloud<\/a>. We had many attendees and lots of great questions \u2013&nbsp;so many questions that we couldn\u2019t answer them all during the event. In this article, I do my best to provide answers to as many remaining questions as possible.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-questions-about-the-webinar\">Questions about the Webinar<\/h2>\n\n\n\n<p><strong>Is there a recording for the webinar?<\/strong><\/p>\n\n\n\n<p>Yes, indeed! The recording is <a href=\"http:\/\/applitools.info\/hgk\">here<\/a>.<\/p>\n\n\n\n<p><strong>Where is the repository for the example code?<\/strong><\/p>\n\n\n\n<p>Here it is: <a href=\"https:\/\/github.com\/applitools\/workshop-cbt-cypress\">https:\/\/github.com\/applitools\/workshop-cbt-cypress<\/a>. The repository also contains a full walkthrough in the <a href=\"https:\/\/github.com\/applitools\/workshop-cbt-cypress\/blob\/main\/WORKSHOP.md\">WORKSHOP.md<\/a> file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-questions-about-cypress\">Questions about Cypress<\/h2>\n\n\n\n<p><strong>Can we run Cypress tests through the command line?<\/strong><\/p>\n\n\n\n<p>Yes! The npx cypress open command opens the Cypress browser window for launching tests, while the npx cypress run command launches tests purely from the command line. Use npx cypress run for Continuous Integration (CI) environments.<\/p>\n\n\n\n<p><strong>So, in a Cypress test case, we don\u2019t need to create any driver object for opening a browser?<\/strong><\/p>\n\n\n\n<p>Correct! When you initialize a Cypress project, it sets up all the imports and references you need. Just call the cy object. To navigate to our first page, call cy.visit(&#8230;) and provide the URL as a string.<\/p>\n\n\n\n<p><strong>Can Cypress handle testing with iFrames?<\/strong><\/p>\n\n\n\n<p>Yes! Check out this cookbook recipe, <a href=\"https:\/\/app14743.cloudwayssites.com\/event\/working-with-iframes-in-cypress\/\">Working with iFrames in Cypress<\/a>.<\/p>\n\n\n\n<p><strong>How does <\/strong><strong>cy.contains(&#8230;)<\/strong><strong> work?<\/strong><\/p>\n\n\n\n<p>The cy.contains(&#8230;) call selects elements based on their text. For example, if a button has the text \u201cAdd Account\u201d, then cy.contains(\u201cAccount\u201d) would locate it. Check the <a href=\"https:\/\/docs.cypress.io\/api\/commands\/contains\">Cypress docs<\/a> for more detailed information.<\/p>\n\n\n\n<p><strong>Can Cypress access backend intranet APIs?<\/strong><\/p>\n\n\n\n<p>I haven\u2019t done that myself, but it looks like there are ways to set up <a href=\"https:\/\/github.com\/bjowes\/cypress-ntlm-auth\">Windows Authentication<\/a> and <a href=\"https:\/\/docs.cypress.io\/guides\/references\/proxy-configuration\">proxies<\/a> with Cypress.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-questions-about-applitools\">Questions about Applitools<\/h2>\n\n\n\n<p><strong>How do I establish baseline snapshots?<\/strong><\/p>\n\n\n\n<p>The first time you take a visual snapshot with Applitools Eyes, it saves the snapshot as the baseline. The next time the same snapshot is taken, it is treated as a checkpoint and compared against the baseline.<\/p>\n\n\n\n<p><strong>Does Applitools Eyes fail a test if a piece of content changes on a page?<\/strong><\/p>\n\n\n\n<p>Every time Applitools Eyes detects a change, it asks the tester to decide if the change is good (\u201cthumbs up\u201d) or bad (\u201cthumbs down\u201d). Applitools enables testers to try different <a href=\"https:\/\/app14743.cloudwayssites.com\/docs\/common\/cmn-eyes-match-levels.html\">match levels<\/a> for comparisons. For example, if you want to check for layout changes but ignore differences in text and color, you can use \u201clayout\u201d matching. Alternatively, if the text matters to you but layout changes don\u2019t, you can use \u201ccontent\u201d matching. Applitools also enables testers to <a href=\"https:\/\/help.applitools.com\/hc\/en-us\/articles\/360006915192-Adding-Ignorable-Regions\">ignore regions<\/a> of the snapshots. For example, a timestamp field will be different for each snapshot, so those could easily be ignored.<\/p>\n\n\n\n<p><strong>How do we save a new baseline snapshot if pages change during development?<\/strong><\/p>\n\n\n\n<p>When a tester marks a change as \u201cgood,\u201d the new snapshot is automatically saved as the new baseline.<\/p>\n\n\n\n<p><strong>What happens if we have thousands of tests and developers change the UI? Will I need to modify thousands of baselines?<\/strong><\/p>\n\n\n\n<p>Hopefully not! Most UI changes are localized to certain pages or areas of an app. In that case, only those baselines would need updates. However, if the UI changes affect every screen, such as a theme change, then you might need to refresh all baselines. That isn\u2019t as bad as it sounds: Applitools has AI-powered maintenance capabilities. When you accept one new snapshot as a baseline, Applitools will automatically scan all other changes in the current batch and accept similar changes. That way, you don\u2019t need to grind through a thousand \u201cthumbs-up\u201d clicks. Alternatively, you could manually delete old baselines through the Applitools dashboard and rerun your tests to establish fresh ones. You could also establish regions to ignore on snapshots for things like headers or sidebars to mitigate the churn caused by cross-cutting changes.<\/p>\n\n\n\n<p><strong>Does Applitools Eyes wait for assets such as images, videos, and animations to load before taking snapshots?<\/strong><\/p>\n\n\n\n<p>No. The browser automation tool or the automation code you write must handle waiting.<\/p>\n\n\n\n<p>(* Actually, there is a way when not using the Ultrafast Test Cloud. The classic SDKs include a parameter that you can set for controlling Eyes snapshot retries when there is no match.)<\/p>\n\n\n\n<p><strong>Can we accept some visual changes while rejecting others for one checkpoint?<\/strong><\/p>\n\n\n\n<p>Yes, you can set regions on a snapshot to use different match levels or to be ignored entirely.<\/p>\n\n\n\n<p><strong>Can we download the snapshot images from our tests?<\/strong><\/p>\n\n\n\n<p>Yes, you can download snapshot images from the Applitools Eyes dashboard.<\/p>\n\n\n\n<p><strong>Does Applitools offer any SDKs for visually testing Windows desktop apps?<\/strong><\/p>\n\n\n\n<p>Yes! Applitools offers SDKs for <a href=\"https:\/\/app14743.cloudwayssites.com\/tutorials\/windows-coded-ui.html\">Windows CodedUI<\/a>, <a href=\"https:\/\/app14743.cloudwayssites.com\/tutorials\/windows-uft.html\">Windows UFT<\/a>, and <a href=\"https:\/\/app14743.cloudwayssites.com\/tutorials\/windows-apps.html\">Windows Apps<\/a>. Applitools also works with <a href=\"https:\/\/app14743.cloudwayssites.com\/blog\/tutorial-how-to-automate-power-automate-desktop\/\">Power Automate Desktop<\/a>.<\/p>\n\n\n\n<p><strong>Does the Applitools Ultrafast Grid use real or emulated mobile devices?<\/strong><\/p>\n\n\n\n<p>Presently, it uses emulated mobile devices.<\/p>\n\n\n\n<p><strong>Can I publicly share my Applitools API key?<\/strong><\/p>\n\n\n\n<p>No, do NOT share your API key publicly! That should be kept secret. Don\u2019t let others run their tests using your account!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-questions-about-applitools-with-cypress\">Questions about Applitools with Cypress<\/h2>\n\n\n\n<p><strong>How do I set up Applitools to work with Cypress?<\/strong><\/p>\n\n\n\n<p>Follow the <a href=\"https:\/\/app14743.cloudwayssites.com\/tutorials\/cypress.html\">Applitools Cypress Tutorial<\/a>. You\u2019ll need to:<\/p>\n\n\n\n<ol><li>Register an Applitools account.<\/li><li>Install the @applitools\/eyes-cypress package.<\/li><li>Run npx eyes-init to set up Applitools Eyes.<\/li><li>Set the APPLITOOLS_API_KEY environment variable to your API key.<\/li><\/ol>\n\n\n\n<p><strong>Cypress cannot locally run tests against Safari, Internet Explorer, or mobile browsers. Can Cypress tests check snapshots on these browsers in the Applitools Ultrafast Test Cloud?<\/strong><\/p>\n\n\n\n<p>Yes! Snapshots capture the whole page, not just pixelated images. Applitools can render snapshots using any browser configuration, <a href=\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-tests-cypress-all-browsers\/\">even ones not natively supported by Cypress<\/a>.<\/p>\n\n\n\n<p><strong>Can Applitools Eyes focus on specific elements instead of an entire page?<\/strong><\/p>\n\n\n\n<p>Yes! You can check a specific web element as a \u201cregion\u201d of a page like this:<\/p>\n\n\n\n<pre class=\"wp-block-code lang-js\"><code>cy.eyesCheckWindow({\n  target: 'region',\n  selector: {\n    type: 'css',\n    selector: '.my-element'\n  }\n});\n<\/code><\/pre>\n\n\n\n<p><strong>Can we run visual tests with Cypress using a free Applitools account?<\/strong><\/p>\n\n\n\n<p>Yes, but you will not be able to access all of Applitools\u2019 features with a free account, and your test concurrency will be limited to 1.<\/p>\n\n\n\n<p><strong>Can we perform traditional assertions together with visual snapshots?<\/strong><\/p>\n\n\n\n<p>Sure! Visual testing eliminates the need for most traditional assertions, but sometimes, old-school assertions can be helpful for checking things like text formatting. Cypress uses <a href=\"https:\/\/www.chaijs.com\/\">Chai<\/a> for assertions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-questions-about-testing\">Questions about Testing<\/h2>\n\n\n\n<p><strong>If a project has little-to-no test automation in place, should we start writing visual tests right away, or should we start with traditional functional tests and add visual tests later?<\/strong><\/p>\n\n\n\n<p>Visual tests are arguably <em>easier<\/em> to automate than traditional functional tests because they simplify assertions. Apply the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Pareto_principle\">80\/20 rule<\/a>: start with a small \u201csmoke\u201d test suite that simply captures snapshots of different pages in your web app. Run that suite for every code change and see the value it delivers. Next, build on it by covering more interactions than navigation. Then, once those are doing well, try to automate more complicated behaviors. At that point, you might need some traditional assertions to complement visual checkpoints.<\/p>\n\n\n\n<p><strong>Can we compare snapshots from a staging environment to a production environment?<\/strong><\/p>\n\n\n\n<p>Yes, you can compare results across test environments as long as the snapshots have the same app, test, and tag names.<\/p>\n\n\n\n<p><strong>Can we schedule visual tests to run every day?<\/strong><\/p>\n\n\n\n<p>Certainly! Both Applitools and Cypress can integrate with any Continuous Integration (CI) system.<\/p>\n\n\n\n<p><strong>Does visual testing have any disadvantages when compared to traditional functional testing?<\/strong><\/p>\n\n\n\n<p>Presently, visual testing does not check specific text formatting, such as dates or currencies. You\u2019ll need to use traditional assertions for that type of pattern matching. Nevertheless, you can use visual testing together with traditional techniques to automate the best functional tests possible.<\/p>\n\n\n\n<p><strong>How do we test UX things like heading levels, fonts, and text sizes?<\/strong><\/p>\n\n\n\n<p>If you take visual snapshots of pages, then Applitools Eyes will detect differences like these. You could also automate traditional assertions to verify specific attributes such as a specific heading number or font name, but those kinds of assertions tend to be brittle.<\/p>\n\n\n\n<p><strong>What IDE should we use for developing Cypress tests with Applitools?<\/strong><\/p>\n\n\n\n<p>Any JavaScript editor should work. Visual Studio Code and JetBrains WebStorm are popular choices.<\/p>\n\n\n\n<p><strong>What tool or framework should we use for API testing?<\/strong><\/p>\n\n\n\n<p>Cypress has built-in API support with the <code>cy.request(...)<\/code> method, making it easy to write end-to-end tests that interact with both the frontend and backend. However, if you want to automate tests purely for APIs, then you should probably use a tool other than Cypress. <a href=\"https:\/\/testautomationu.applitools.com\/postman-tutorial\/\">Postman<\/a> is one of the most popular tools for API testing. If you want to stick to JavaScript, you could look into <a href=\"https:\/\/testautomationu.applitools.com\/javascript-api-testing\/\">SuperTest and Nock<\/a>.<\/p>\n\n\n\n<p><strong>Can we do load testing with cross-browser testing?<\/strong><\/p>\n\n\n\n<p><em>Load testing<\/em> is the practice of adding different intensities of \u201cload\u201d to a system while running functional and performance tests. For web apps, \u201cload\u201d is typically a rate of requests (like 100 requests per second). As load increases, performance degrades, and functionality might start failing. You can do load testing with <a href=\"https:\/\/app14743.cloudwayssites.com\/cross-browser-testing\/\">cross-browser testing<\/a>, but keep in mind that any failures due to load would probably happen the same way for any browser. Load hits the backend, not the frontend. Repeating load tests for a multitude of different browser configurations may not be worthwhile.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>After our webinar on Cross Browser Testing with Cypress we had so many great questions we couldn\u2019t answer them all at the time, so we&#8217;re tackling them now.<\/p>\n","protected":false},"author":89,"featured_media":34275,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10004],"tags":[10050,10357,12690,12686,10185,12967],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v24.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Cross Browser Testing with Cypress Workshop Q&amp;A - AI-Powered End-to-End Testing | Applitools<\/title>\n<meta name=\"description\" content=\"After our webinar on Cross Browser Testing with Cypress we had so many great questions we couldn\u2019t answer them all at the time, so we&#039;re tackling them now.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cross Browser Testing with Cypress Workshop Q&amp;A\" \/>\n<meta property=\"og:description\" content=\"After our webinar on Cross Browser Testing with Cypress we had so many great questions we couldn\u2019t answer them all at the time, so we&#039;re tackling them now.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/\" \/>\n<meta property=\"og:site_name\" content=\"AI-Powered End-to-End Testing | Applitools\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-09T21:30:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-21T13:17:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"831\" \/>\n\t<meta property=\"og:image:height\" content=\"542\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Andrew Knight\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Andrew Knight\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/\"},\"author\":{\"name\":\"Andrew Knight\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/a8038d2c9ccd3531090422b6172b125b\"},\"headline\":\"Cross Browser Testing with Cypress Workshop Q&#038;A\",\"datePublished\":\"2022-02-09T21:30:32+00:00\",\"dateModified\":\"2022-03-21T13:17:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/\"},\"wordCount\":1549,\"publisher\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg\",\"keywords\":[\"Cross-browser Testing\",\"Cypress\",\"Test Engineers\",\"Visual Testing Strategies\",\"Webinar\",\"Webinar Recap\"],\"articleSection\":[\"Advanced Topics\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/\",\"name\":\"Cross Browser Testing with Cypress Workshop Q&A - AI-Powered End-to-End Testing | Applitools\",\"isPartOf\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg\",\"datePublished\":\"2022-02-09T21:30:32+00:00\",\"dateModified\":\"2022-03-21T13:17:14+00:00\",\"description\":\"After our webinar on Cross Browser Testing with Cypress we had so many great questions we couldn\u2019t answer them all at the time, so we're tackling them now.\",\"breadcrumb\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg\",\"contentUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg\",\"width\":831,\"height\":542},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/app14743.cloudwayssites.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Advanced Topics\",\"item\":\"https:\/\/app14743.cloudwayssites.com\/blog\/category\/advanced-topics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Cross Browser Testing with Cypress Workshop Q&#038;A\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#website\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/\",\"name\":\"Applitools Visual AI\",\"description\":\"Applitools delivers full end-to-end test automation with AI infused at every step.\",\"publisher\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/app14743.cloudwayssites.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#organization\",\"name\":\"Applitools\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png\",\"contentUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png\",\"width\":156,\"height\":28,\"caption\":\"Applitools\"},\"image\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/a8038d2c9ccd3531090422b6172b125b\",\"name\":\"Andrew Knight\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a1117da4074b1fd8692051ab8a3a9528?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a1117da4074b1fd8692051ab8a3a9528?s=96&d=mm&r=g\",\"caption\":\"Andrew Knight\"},\"url\":\"https:\/\/app14743.cloudwayssites.com\/blog\/author\/andyknight\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Cross Browser Testing with Cypress Workshop Q&A - AI-Powered End-to-End Testing | Applitools","description":"After our webinar on Cross Browser Testing with Cypress we had so many great questions we couldn\u2019t answer them all at the time, so we're tackling them now.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/","og_locale":"en_US","og_type":"article","og_title":"Cross Browser Testing with Cypress Workshop Q&A","og_description":"After our webinar on Cross Browser Testing with Cypress we had so many great questions we couldn\u2019t answer them all at the time, so we're tackling them now.","og_url":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/","og_site_name":"AI-Powered End-to-End Testing | Applitools","article_published_time":"2022-02-09T21:30:32+00:00","article_modified_time":"2022-03-21T13:17:14+00:00","og_image":[{"width":831,"height":542,"url":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg","type":"image\/jpeg"}],"author":"Andrew Knight","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Andrew Knight","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#article","isPartOf":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/"},"author":{"name":"Andrew Knight","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/a8038d2c9ccd3531090422b6172b125b"},"headline":"Cross Browser Testing with Cypress Workshop Q&#038;A","datePublished":"2022-02-09T21:30:32+00:00","dateModified":"2022-03-21T13:17:14+00:00","mainEntityOfPage":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/"},"wordCount":1549,"publisher":{"@id":"https:\/\/app14743.cloudwayssites.com\/#organization"},"image":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage"},"thumbnailUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg","keywords":["Cross-browser Testing","Cypress","Test Engineers","Visual Testing Strategies","Webinar","Webinar Recap"],"articleSection":["Advanced Topics"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/","url":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/","name":"Cross Browser Testing with Cypress Workshop Q&A - AI-Powered End-to-End Testing | Applitools","isPartOf":{"@id":"https:\/\/app14743.cloudwayssites.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage"},"image":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage"},"thumbnailUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg","datePublished":"2022-02-09T21:30:32+00:00","dateModified":"2022-03-21T13:17:14+00:00","description":"After our webinar on Cross Browser Testing with Cypress we had so many great questions we couldn\u2019t answer them all at the time, so we're tackling them now.","breadcrumb":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#primaryimage","url":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg","contentUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2022\/02\/cypress-cross-browser-qa-2_831x542.jpg","width":831,"height":542},{"@type":"BreadcrumbList","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/cross-browser-testing-cypress-workshop-qa\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/app14743.cloudwayssites.com\/"},{"@type":"ListItem","position":2,"name":"Advanced Topics","item":"https:\/\/app14743.cloudwayssites.com\/blog\/category\/advanced-topics\/"},{"@type":"ListItem","position":3,"name":"Cross Browser Testing with Cypress Workshop Q&#038;A"}]},{"@type":"WebSite","@id":"https:\/\/app14743.cloudwayssites.com\/#website","url":"https:\/\/app14743.cloudwayssites.com\/","name":"Applitools Visual AI","description":"Applitools delivers full end-to-end test automation with AI infused at every step.","publisher":{"@id":"https:\/\/app14743.cloudwayssites.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/app14743.cloudwayssites.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/app14743.cloudwayssites.com\/#organization","name":"Applitools","url":"https:\/\/app14743.cloudwayssites.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/","url":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png","contentUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png","width":156,"height":28,"caption":"Applitools"},"image":{"@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/a8038d2c9ccd3531090422b6172b125b","name":"Andrew Knight","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a1117da4074b1fd8692051ab8a3a9528?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a1117da4074b1fd8692051ab8a3a9528?s=96&d=mm&r=g","caption":"Andrew Knight"},"url":"https:\/\/app14743.cloudwayssites.com\/blog\/author\/andyknight\/"}]}},"_links":{"self":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/posts\/34261"}],"collection":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/users\/89"}],"replies":[{"embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/comments?post=34261"}],"version-history":[{"count":0,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/posts\/34261\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/media\/34275"}],"wp:attachment":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/media?parent=34261"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/categories?post=34261"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/tags?post=34261"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}