<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Robin Jangu</title>
    <description>The latest articles on DEV Community by Robin Jangu (@robin99r).</description>
    <link>https://dev.to/robin99r</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F887051%2F69b884a3-9aad-4982-b0f7-4d0e0c7dfa98.png</url>
      <title>DEV Community: Robin Jangu</title>
      <link>https://dev.to/robin99r</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/robin99r"/>
    <language>en</language>
    <item>
      <title>Forgotten Callbacks, Getting a Closure</title>
      <dc:creator>Robin Jangu</dc:creator>
      <pubDate>Fri, 08 Jul 2022 12:23:00 +0000</pubDate>
      <link>https://dev.to/testmuai/forgotten-callbacks-getting-a-closure-m65</link>
      <guid>https://dev.to/testmuai/forgotten-callbacks-getting-a-closure-m65</guid>
      <description>&lt;p&gt;Reason why JS is adored all over the internet is because of the powerful libraries and tools that empower us in making efficient web pages in very less time. Closure is one of the perks of JS which is used quite a lot. Now, every once while these commonly used phenomenons double cross the developers and fall prey to the dark side. In this blog we will understand how closures and callbacks result in memory leakage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Have you heard about &lt;a href="https://www.lambdatest.com/free-online-tools/json-minify?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=jul08_sd&amp;amp;utm_term=sd&amp;amp;utm_content=free_tools" rel="noopener noreferrer"&gt;Minify JSON&lt;/a&gt;? It is a JavaScript library that removes whitespace and comments from blocks of JSON-like content, while preserving its syntax&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closure and Callbacks
&lt;/h2&gt;

&lt;p&gt;When you define any function in javascript, all the data in that parent function can be accessed by any other function that you define within the parent function’s boundaries. Closures provide you with associating the data and referencing to another function within.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function strongestavenger() {
    var name = "HULK";                     // name is a local variable created by 
                                           // strongestavenger
    function displayName() {               // displayName() is the inner function, a closure
                            alert (name);  // displayName() uses variable declared in 
                                           // the parent function       
                           }
    displayName();    
}
strongestavenger();
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;The strongestavenger would display HULK, when you initiated the function strongestavenger. DisplayName() is the closure that has access to the name which stores HULK in it.&lt;/p&gt;

&lt;p&gt;Callbacks as the name itself indicates are nothing but when a function and its components are called.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;var shield_data = getData();
setInterval(function() {
    var node = document.getElementById('Node');
    if(node) {
        // Do stuff with node and shield_data
        node.innerHTML = JSON.stringify(someResource));
    }
}, 1000);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Callbacks and closures are basically work on the principle of referencing the data nodes for usage. So what will happen if these nodes are removed, or the data itself is deleted. Both of them will result in Memory leakage and will cripple the browser’s efficiency. DOM node referencing also works in the same manner and their effect is also the same.&lt;br&gt;
Closures and with recursion if not properly used may easily handicap the browsers, mix it with a redundant variables and you have got a recipe for disaster.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Do you know? &lt;a href="https://www.lambdatest.com/free-online-tools/json-prettify?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=jul08_sd&amp;amp;utm_term=sd&amp;amp;utm_content=free_tools" rel="noopener noreferrer"&gt;JSON Prettify&lt;/a&gt; is a common format for storing data, but it can be hard to read. Prettify JSON will indent the JSON file, make sure stuff is lined up in a similar manner, and will put closing parenthesis in the same space every time.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Solution
&lt;/h2&gt;

&lt;p&gt;Old versions of internet explorers had bugs due to which memory leakage due to forgotten callbacks and closures resulted in crashing. The problem then was that they couldn’t differentiate between javascript and DOM nodes cyclic differences. Even in the latest versions of the browsers today are not that efficient that they can reduce the memory leakage to zero. Till the time the node can be reached within the parent (window) function they can’t be swept by the garbage collection.&lt;/p&gt;

&lt;p&gt;It is impossible to not use closures while scripting, what can be done is keeping in check where the leakage is happening. Using browser profiling (mentioned in the memory debugging blog) time lapse we can easily detect the increase in memory. Find the root cause, what event or function is causing this surge and then explicitly delete them.&lt;/p&gt;

&lt;p&gt;Especially if you are using jQuery, it is imperative that you don’t use eventlisteners too much. If you are writing script which requires events to be made, make events on list rather than making a list of events.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Check this out: &lt;a href="https://www.lambdatest.com/free-online-tools/base64-decode?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=jul08_sd&amp;amp;utm_term=sd&amp;amp;utm_content=free_tools" rel="noopener noreferrer"&gt;Base64 decoding&lt;/a&gt;- A way of translating text form into binary data so that it can be transmitted more easily via e-mail and HTML form data.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Choosing The Right JavaScript Framework</title>
      <dc:creator>Robin Jangu</dc:creator>
      <pubDate>Tue, 05 Jul 2022 10:12:00 +0000</pubDate>
      <link>https://dev.to/testmuai/choosing-the-right-javascript-framework-1nac</link>
      <guid>https://dev.to/testmuai/choosing-the-right-javascript-framework-1nac</guid>
      <description>&lt;p&gt;The emergence of unique frameworks with each of them having distinct characteristic advantages has caused a rift in our wonderful JavaScript community. Developers advocating for their favorites as the golden era of technological wonder has started, the sun has set for the outdated libraries. Amidst all this chaos comes a very irritating question as to which framework is the best, to which the answer is all of them. LambdaTest offers the most advanced cloud-based software testing platform, which supports various automation frameworks like &lt;a href="https://www.lambdatest.com/selenium?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=webpage" rel="noopener noreferrer"&gt;Selenium&lt;/a&gt; testing, &lt;a href="https://www.lambdatest.com/cypress-testing?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=webpage" rel="noopener noreferrer"&gt;Cypress testing&lt;/a&gt;, &lt;a href="https://www.lambdatest.com/playwright-testing?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=webpage" rel="noopener noreferrer"&gt;Playwright&lt;/a&gt;, &lt;a href="https://www.lambdatest.com/learning-hub/end-to-end-testing?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=learning_hub" rel="noopener noreferrer"&gt;End to end testing&lt;/a&gt; and more. While there are countless alternatives to the libraries, the important thing is to understand your requirements and then consider choosing. While there are countless alternatives to the libraries, the important thing is to understand your requirements and then consider choosing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Framework or Libraries
&lt;/h2&gt;

&lt;p&gt;Both these terms are synonymous and often times are interchangeable. In layman terms both Framework and library are codes of JavaScript, the difference lies in their functionality. While frameworks are codes by using which a developer can customize everything within the software/app/website by modifying the codes in accordance with the framework rules, libraries, on the other hand, provide you with the functionality that can be directly used by you while scripting.&lt;/p&gt;

&lt;h2&gt;
  
  
  Isomorphic
&lt;/h2&gt;

&lt;p&gt;Often termed as a universal framework, they have changed the way everything is done. The main motivation behind the framework was to optimize the website loading time and streamline JS bundles. This was also the main reason behind its popularity.&lt;/p&gt;

&lt;p&gt;a Few years ago the client-side and server-side frameworks used to be different. JavaScript was opted more for client-side, because it ignores a few errors providing the user with a seamless experience. Python and PHP were mostly used on the server-side.&lt;/p&gt;

&lt;p&gt;When the concept of isomorphic library came into existence, developers started using these libraries. The Isomorphic framework breaks the barrier between server and client-side. It allows developers to use components of the framework on both ends. Because of this the JS bundle also gets a little sleeker as instead of having two frameworks, the solution now share one.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj2yyl8825sxedp4w7d47.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj2yyl8825sxedp4w7d47.jpg" width="534" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  REACT
&lt;/h2&gt;

&lt;p&gt;The reason behind the rising popularity of React JS is because of the unparalleled support and love showed by the community of JavaScript developers. It also helps that Facebook and Instagram back this wonderful library.&lt;/p&gt;

&lt;p&gt;React has made quite an impact on both designers and developers, and the feature-rich library has made complex integrations a bit easier. It enables the developers to make encapsulated components that manage their own state and then these components are composed to make complex UI. Features like lazy loading have been successfully implemented on a large scale because of it. Using React Boilerplate and React Starter-kit you can easily make interactive interfaces. The concept of reacting is to put HTML in JS rather than vice versa because JavaScript is more powerful than HTML.&lt;/p&gt;

&lt;p&gt;They provide you with a predefined environment and let you code.&lt;br&gt;
The declarative view makes the coding predictable hence the code becomes easy to debug. Using React will push you to make your own framework. Pairing it with Next.js will smoothen things on the server side and all the heavy lifting will be done on the back-end.&lt;/p&gt;

&lt;p&gt;React stack usually includes Redux, React.route, React.saga and Node.js.&lt;br&gt;
Myntra to exploits react although they only use parts of it because such a website has minimal interaction between sibling components. React has a high rendering performance when there is a complicated component change with frequent UI changes. They prefer preact because it’s smaller and provides them greater speed. eBay on the other hand spice things up by adding Angular and Ember along with the preact library. That seems to be the trend in modern e-commerce websites.&lt;/p&gt;

&lt;p&gt;Npm is a trustworthy package manager. Earlier npm had too many issues as the packages were scattered, Yarn was introduced as directory for npm. It is a godsend for developers, npm has vast community support and npm too has become faster and almost equal to yarn in terms of package management. React and Redux come handy while handling the packages. Start up with your free practical &lt;a href="https://www.lambdatest.com/testing-cloud/react-redux-testing?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=jul05_sd&amp;amp;utm_term=sd&amp;amp;utm_content=testing_cloud" rel="noopener noreferrer"&gt;React Redux testing.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvhub02azx55vrvfnscda.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvhub02azx55vrvfnscda.jpg" width="534" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Do you know &lt;a href="https://www.lambdatest.com/web-technologies/webworkers?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=jul05_sd&amp;amp;utm_term=sd&amp;amp;utm_content=web_technologies" rel="noopener noreferrer"&gt;web workers&lt;/a&gt; lets you run scripts from within your web page and isolate them from your environment.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Angular
&lt;/h2&gt;

&lt;p&gt;Angular is TypeScript JavaScript which is backed and maintained by Google. This powerful framework has been deployed by Google, Healthcare.gov, Weather.com, Microsoft and Forbes. TypeScript is in itself a pro and a con. While the autonomy of TypeScript makes it easier to debug but the problem arises with the fixed patterns that over complicate simple and easier to do things. Also the steep learning curve makes it tough for people to take initiative and follow this. If you have dealt with object oriented programming in the past then Angular is for you.&lt;/p&gt;

&lt;p&gt;Angular is more of a framework rather than library because it tells you how your code must be written. Build tools in angular are complex to understand too. Almost everyone agrees that Angular is bloated as its size is about 150 kb gzipped. Unlike the virtual DOM of React and Vue they have fully fledged DOM that makes it hectic and bloated. Virtual DOM is a new concept that has just started gaining ground but it is fast as now only changes have to be pushed.&lt;br&gt;
Apart from this the syntax and libraries require due research and discipline in Angular.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4zuo2v3m2vsz1w3ugk2r.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4zuo2v3m2vsz1w3ugk2r.jpg" width="534" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Vue
&lt;/h2&gt;

&lt;p&gt;Vue is simply the best of both worlds, meaning it lies somewhere between the dictatorship of Angular and democratic chaos of React. This young JS framework has gained some serious popularity without having been associated or backed by any giant. The framework is used by Alibaba, Nintendo and Gitlab. A team of 16 people made Vue into a very simple yet efficient JS framework.&lt;/p&gt;

&lt;p&gt;Too many cooks spoil the broth, working on the similar motto ex google employee Evans set out to achieve benchmarks in the JavaScript. Vue uses JS ES5 or ES6 depending upon how the user wishes and also supports TypeScript. The only problem with Vue is that it is comparatively young and doesn’t yet have a lot of libraries and support packages but the npm stats make it clear that it is gaining popularity and its community is growing at a rapid pace. It is a perfect blend of flexibility and coding discipline, it provides just enough framework that you don’t feel bound. Just like React has Redux, Vue has Vuex but if you are familiar you can use Redux with Vue too. Memory allocation and performance with Vue is great and size too is smallest than its competition Frameworks and libraries i.e. 23 k gzipped.&lt;/p&gt;

&lt;p&gt;Vue makes use of the latest tech trends and inculcates within it without complicating the whole project. Combining Vue 2.0 with server side rendering (SSR), Vuex and a GraphQL client like Apollo that you end up with super light, fast and robust application while providing a great user and developer experience too.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F2000%2F0%2AvEs25S55gwWOBLZW.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F2000%2F0%2AvEs25S55gwWOBLZW.jpg" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Check this out: &lt;a href="https://www.lambdatest.com/web-technologies/x-doc-messaging?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=jul05_sd&amp;amp;utm_term=sd&amp;amp;utm_content=web_technologies" rel="noopener noreferrer"&gt;cross document messaging&lt;/a&gt;- If you want to send a message or update data on one page to another on the same domain, you don’t need to write any code; just use postMessage.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Polymer
&lt;/h2&gt;

&lt;p&gt;Google introduced polymer to empower the developers to fully take advantage of the latest web technologies. Youtube has renovated it gaming stream using Polymer, it is indeed very fast. The most notable feature in Polymer is the ability to reuse custom elements to interoperate with a browser’s built-in elements. Polymer.dom was released with an intent to enable the developers of the DOM manipulation which paved the way for new libraries and frameworks to be used with it.&lt;/p&gt;

&lt;p&gt;Version 2 of Polymer also include data system improvements resulting in easier debugging and making it easier for the data flow between elements. If you deal with array handling a lot then polymer is quite a magician. Polymer version 3 soon to be out has left bower and moved to npm for version management.&lt;br&gt;
Polymer App Toolbox helps you build and deliver cutting-edge Progressive Web Apps with minimal overhead and payload, by leveraging powerful web platform features like Web Components, Service Worker and HTTP/2.&lt;/p&gt;

&lt;p&gt;The Toolbox provides a component-based architecture, responsive layouts, a modular router, localization support, turnkey support for local storage and offline caching, and efficient delivery of unbundled app resources. Adopt these features individually, or use them together to build a full-featured Progressive Web App.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F2000%2F0%2AFqod9S12xwdVd6cm.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F2000%2F0%2AFqod9S12xwdVd6cm.jpg" width="534" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Preact
&lt;/h2&gt;

&lt;p&gt;Most of the people are afraid of using React mainly because of its size and performance. Preact was introduced mainly due to the following reasons, and it is amazing how easily you can swap your react with the preact counterparts. Preact is known to have quite a reputation in enhancing the performance of mobile web applications. Changing React &amp;amp; React DOM with Preact-compat paired with Webpack and boom all your worries go out of the window.&lt;/p&gt;

&lt;p&gt;Using preact will reduce your main app bundle by at least one third (may vary depending on app), the only catch being that testing gets complicated. The alternative to this maybe using react for development and preact for production. Enzyme which is used in react is preact-compat integrable. Lyft and Uber used preact and it improved the performance because it is simply faster and smaller. Like react it also has virtual DOM that acts as a reagent enhancing its speed.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F2000%2F0%2ANJ3rAdhw0Q77uQQH.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F2000%2F0%2ANJ3rAdhw0Q77uQQH.jpg" width="534" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Hey! Have you heard about &lt;a href="https://www.lambdatest.com/web-technologies/xml-serializer?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=jul05_sd&amp;amp;utm_term=sd&amp;amp;utm_content=web_technologies" rel="noopener noreferrer"&gt;DOM Parsing and Serialization&lt;/a&gt;? Use the DOMParser and XMLSerializer classes to parse and serialize DOM trees. The XMLSerializer can also serialize HTML strings into an XML document fragment, or vice versa.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Maturity in JS is accepting the fact that there is no ‘best’ overall framework or library. In the end it boils down to what your project requires, and it is always advisable to use more than one library. For instance React components can be used to limit along with Vue quite a lot of times.&lt;/p&gt;

&lt;p&gt;If you have a big team then Angular provides an extra edge because of its fixed procedures and syntax. Both Angular and Vue are great if you love using templates. If server-side rendering is the objective then both React and Vue have potential to solve your problems, same will be the case if you are using it for startups.&lt;/p&gt;

&lt;p&gt;Personally, though I favor Vue out of all three. With Vue you have functioning frameworks enough for you to start scripting, no additional libraries need to be connected. Most companies are switching from Angular to Vue just to bridge the gap between senior and junior developers because it is easy to learn. The only problem with Vue is that its very young and community needs to adopt it in order for us to realize its full potential. The polymer is futuristic, for now not a lot of developers are using it. After some time time, it will be mainstream and its support &lt;br&gt;
and community will flourish.&lt;/p&gt;

&lt;p&gt;JavaScript world is a lot bigger than you might think, expand your horizons and learn more and more about different frameworks and libraries. Tell us about your experiences in the comment section.&lt;/p&gt;

&lt;p&gt;Happy Scripting!&lt;/p&gt;

&lt;p&gt;Also, LambdaTest offers the most advanced cloud-based software testing platform, which supports various automation frameworks like &lt;a href="https://www.lambdatest.com/selenium?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=webpage" rel="noopener noreferrer"&gt;Selenium&lt;/a&gt;, &lt;a href="https://www.lambdatest.com/cypress-testing?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=webpage" rel="noopener noreferrer"&gt;Cypress testing&lt;/a&gt;, &lt;a href="https://www.lambdatest.com/playwright-testing?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=webpage" rel="noopener noreferrer"&gt;Playwright&lt;/a&gt;, &lt;a href="https://www.lambdatest.com/learning-hub/end-to-end-testing?utm_source=devto&amp;amp;utm_medium=organic&amp;amp;utm_campaign=sep15_sd&amp;amp;utm_term=sd&amp;amp;utm_content=learning_hub" rel="noopener noreferrer"&gt;End to end testing&lt;/a&gt; and more.&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>javascript</category>
      <category>java</category>
      <category>testing</category>
    </item>
  </channel>
</rss>
