<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>GameDriver Blogs</title>
    <link>https://www2.gamedriver.io/blog</link>
    <description />
    <language>en</language>
    <pubDate>Tue, 12 May 2026 15:44:00 GMT</pubDate>
    <dc:date>2026-05-12T15:44:00Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>The (revised) Future of AI in Game Testing | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2023/may/the-revised-future-of-ai-in-game-testing</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p&gt;With all the hype surrounding offerings such as ChatGPT, Midjourney, Stable Diffusion, and search offerings from Google and Microsoft, it's no wonder many people are looking to AI as a potential solution for what might be considered a mundane task. Many developers I have spoken to are worrying that AI may put people out of a job, so we felt it necessary to revisit this topic and shed some light on the impact that AI will have on game testing.&lt;/p&gt; 
 &lt;p&gt;If you are unfamiliar with the impact that machine learning and AI have had on our daily lives, look no further than Gmail, Grammarly, or Google Docs, and you can see the almost prescient prediction when writing emails, documents, searches, and more. These solutions have been trained on our every action for over a decade, and the latest entry from &lt;a href="http://openai.com"&gt;OpenAI&lt;/a&gt;, &lt;a href="https://openai.com/blog/chatgpt"&gt;ChatGPT&lt;/a&gt;, is similar in scale if not in scope. Where the aforementioned basic tools are useful in predicting what we’re going to write based on the current context, ChatGPT is proving to be useful for a much broader context. It’s amazing to see ChatGPT answer general questions or write something based on &lt;a href="https://beebom.com/best-chatgpt-prompts/"&gt;user prompts&lt;/a&gt;, but it isn't magic. This is the result of training algorithms on billions and billions of examples from people. The same is true with &lt;a href="https://github.com/features/copilot"&gt;GitHub Copilot&lt;/a&gt;, a feature that will not only write code for you given a minimal set of parameters, but it can seemingly predict what you need to write based on what you have written, and can even write fully featured applications from little more than comments. But Copilot, just like ChatGPT, has been trained on billions and billions of lines of code written by millions of developers the world over. It can't write anything entirely new but is very good at predicting what needs to be written based on what has come before. Some would even argue that everything has been written before, if not in the same combination. As many have shown, these models are not without their flaws. but that's not the point I want to make.&lt;/p&gt; 
 &lt;h2&gt;The limitations of today’s AI when it comes to game testing&lt;/h2&gt; 
 &lt;p&gt;When it comes to game testing, more so than any other form of application testing there simply isn't enough data to train a model in order to do anything meaningful. This is why many of the examples of AI and testing have used evolutionary algorithms and reinforcement learning rather than generative algorithms because generative algorithms depend on massive amounts of training data. Evolutionary algorithms are the brute force equivalent of an infinite number of monkeys on an infinite number of typewriters, eventually, you will get the works of Shakespeare. However, those works may be buried in a sea of unusable information, and the amount of computation involved in generating anything useful from an evolutionary algorithm, at least when it comes to testing complex applications such as a game, is going to be expensive. Let me elaborate.&lt;/p&gt; 
 &lt;p&gt;Back in &lt;a href="https://www.gamedriver.io/blog/posts/2018/october/the-future-of-ai-in-gaming/?"&gt;October 2018&lt;/a&gt;, we published a blog that touched on the state of AI in relation to game testing at that time. There were articles and offerings from big players like OpenAI and IBM as well as videos from prominent YouTubers such as &lt;a href="https://www.youtube.com/watch?v=qv6UVOQ0F44"&gt;Sethbling&lt;/a&gt; which seem to indicate there were major shifts coming in the way that we played and tested video games. At that time, we predicted the inability of AI to adequately test incredibly complex and interactive projects. What we didn't realize then, is that even an army of individuals would not be completely up to that task. They simply lack the tools or the time to do so. Take for example a title like Cyberpunk 2077. When you multiply a massive world with thousands of objectives, and a nearly infinite number of paths, and toss in support for multiple platforms across older and current-generation hardware, it's no wonder people are looking for a better solution than just adding more hands.&lt;/p&gt; 
 &lt;p&gt;If we were to design the kind of AI solution required to test a game like Cyberpunk 2077, it would require a combination of techniques used for both exploratory testing and generative approaches, as well as a vast sea of existing gameplay data, none of which existed at the time. And it would need to be massively parallel. All of this leaves us with little more than bots that can mindlessly run around in world space interacting with objects clicking on things, accepting quests but never completing them, shooting anything that moves, or simply dying.&lt;/p&gt; 
 &lt;p&gt;&lt;img style="max-width: 277px" src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/cyberpunk-bug.gif?width=277&amp;amp;height=370&amp;amp;name=cyberpunk-bug.gif" alt="" width="277" height="370"&gt;&lt;/p&gt; 
 &lt;h2&gt;Even the most powerful AI tools will still struggle to understand the context of a gaming environment&lt;/h2&gt; 
 &lt;p&gt;The problem in gaming is context. Examples such as &lt;a href="https://gymnasium.farama.org/environments/box2d/car_racing/"&gt;OpenAI gymnasium&lt;/a&gt; demonstrate the ability to play a game given a limited set of actions and a simple observation + reward system. These are often 2D side scrollers or even simpler games like pong where the result is as simple as monitoring that a dot stays alive on the screen. But what these approaches lack is the context of what they're doing, and this can come in one of two ways. Number one, by interpreting what's on the screen at any given time and applying that context to the behavioral output of the agent. And two, by capturing data from the underlying application or engine that will tell us what is happening in the scene when we perform our inputs. Sometimes this comes from visible data such as the score on the screen, and sometimes this comes from underlying game state information. But without context our inputs are meaningless. The AI might be able to navigate through a level to the end after hundreds or thousands of iterations, but that cannot be applied to any sort of testing or outcome-driven objective (i.e. “Finish the main quest line”).&lt;/p&gt; 
 &lt;h2&gt;User intent is everything when it comes to finding high-value bugs&lt;/h2&gt; 
 &lt;p&gt;So does this mean AI can never be applied to game testing? Absolutely not, but there are challenges that need to be addressed. By their nature, tests compare an expected behavior to an actual result which requires some sense of the intent. Intent in this context refers to what’s happening in the game, but also what experience the designers meant to deliver. Establishing intent on a high level, such as “move right until the player reaches the end” in the &lt;a href="https://www.youtube.com/watch?v=qv6UVOQ0F44"&gt;MarI/O&lt;/a&gt; example is simple enough, but what happens along the way and whether everything is functioning as intended is much more nuanced. What it means is that we need to start capturing the data that will be used to train future algorithms in order to make the dream of AI-driven game testing a reality. This introduces additional problems, such as what telemetry and user context can we capture to provide both meaningful usage and behavior data for one game, but also what can be reused across multiple properties.&lt;/p&gt; 
 &lt;p&gt;Unlike emails, documents, or web pages, video games are rarely similar enough to draw context from one that could be meaningfully applied to another. In a long enough lived project, we might be able to gather enough telemetry and user behavior to determine what types of tests need to be run for future versions, but it would be difficult to the point of impractical to try and derive any meaningful information from a game like World of Warcraft and try to apply that information to drive tests against Cyberpunk 2077.&lt;/p&gt; 
 &lt;p&gt;To say that AI won’t be used for game testing would be akin to predicting the horse-driven wagon would outlive the automobile. There have been several &lt;a href="https://repository.library.northeastern.edu/files/neu:m0455c95d/fulltext.pdf"&gt;Ph.D. theses&lt;/a&gt; written on this subject, and indeed that work seems promising. However, these are based on the assumption that gameplay without context is meaningful in itself. In some use cases, this can be true, such as finding holes in the game world or testing whether the player can navigate within the confines of a procedurally generated environment such as those created in No Man’s Sky. But more meaningful tests such as whether enemies behave as they should when the user is in stealth, or if player damage numbers meet expectations with certain combinations of gear and buffs/debuffs will require the agents to know much more about the intent of the game than is currently possible.&lt;/p&gt; 
 &lt;p&gt;In short, AI will need to walk before it can &lt;a href="https://www.youtube.com/watch?v=gn4nRCC9TwQ"&gt;run&lt;/a&gt;. And right now, as an industry, automated game testing is still learning to crawl.&lt;/p&gt; 
 &lt;p&gt;&lt;img src="https://www2.gamedriver.io/hubfs/Imported_Blog_Media/deepmind-ai-walk.gif" alt=""&gt;&lt;/p&gt; 
 &lt;h2&gt;AI as a tool that will complement games testers, not replace them&lt;/h2&gt; 
 &lt;p&gt;Here at GameDriver, we believe the future of video game and Immersive Experience testing is a combination of automated functional testing to make sure that all of the features and systems “work” as designed; AI-driven “behavioral testing” to test the bounds of what is possible given a set of rules and conditions; and human-powered experience testing to ensure the intent of the experience is desirable, whether that be for entertainment, social interaction, education, or something entirely new. In this sense, the tester is not the horse being replaced by the car, but the one steering the wagon. AI is simply the engine powering the car that would replace the wagon, as in our previous analogy.&lt;/p&gt; 
 &lt;p&gt;This will change the well-known &lt;a href="https://martinfowler.com/articles/practical-test-pyramid.html"&gt;testing pyramid&lt;/a&gt; from one that breaks down the different types of technical tests that are performed, to one that covers the different fundamental aspects of our experiences, including the functionality, limitations, and desired experience of a given application or game. We believe this shift is not only inevitable but necessary for the industry to succeed as it will allow for the delivery of much more complex and high-quality Immersive Experiences.&lt;/p&gt; 
 &lt;p&gt;&lt;img src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/pyramids.png?width=763&amp;amp;height=316&amp;amp;name=pyramids.png" alt="" width="763" height="316"&gt;&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p&gt;With all the hype surrounding offerings such as ChatGPT, Midjourney, Stable Diffusion, and search offerings from Google and Microsoft, it's no wonder many people are looking to AI as a potential solution for what might be considered a mundane task. Many developers I have spoken to are worrying that AI may put people out of a job, so we felt it necessary to revisit this topic and shed some light on the impact that AI will have on game testing.&lt;/p&gt; 
 &lt;p&gt;If you are unfamiliar with the impact that machine learning and AI have had on our daily lives, look no further than Gmail, Grammarly, or Google Docs, and you can see the almost prescient prediction when writing emails, documents, searches, and more. These solutions have been trained on our every action for over a decade, and the latest entry from &lt;a href="http://openai.com"&gt;OpenAI&lt;/a&gt;, &lt;a href="https://openai.com/blog/chatgpt"&gt;ChatGPT&lt;/a&gt;, is similar in scale if not in scope. Where the aforementioned basic tools are useful in predicting what we’re going to write based on the current context, ChatGPT is proving to be useful for a much broader context. It’s amazing to see ChatGPT answer general questions or write something based on &lt;a href="https://beebom.com/best-chatgpt-prompts/"&gt;user prompts&lt;/a&gt;, but it isn't magic. This is the result of training algorithms on billions and billions of examples from people. The same is true with &lt;a href="https://github.com/features/copilot"&gt;GitHub Copilot&lt;/a&gt;, a feature that will not only write code for you given a minimal set of parameters, but it can seemingly predict what you need to write based on what you have written, and can even write fully featured applications from little more than comments. But Copilot, just like ChatGPT, has been trained on billions and billions of lines of code written by millions of developers the world over. It can't write anything entirely new but is very good at predicting what needs to be written based on what has come before. Some would even argue that everything has been written before, if not in the same combination. As many have shown, these models are not without their flaws. but that's not the point I want to make.&lt;/p&gt; 
 &lt;h2&gt;The limitations of today’s AI when it comes to game testing&lt;/h2&gt; 
 &lt;p&gt;When it comes to game testing, more so than any other form of application testing there simply isn't enough data to train a model in order to do anything meaningful. This is why many of the examples of AI and testing have used evolutionary algorithms and reinforcement learning rather than generative algorithms because generative algorithms depend on massive amounts of training data. Evolutionary algorithms are the brute force equivalent of an infinite number of monkeys on an infinite number of typewriters, eventually, you will get the works of Shakespeare. However, those works may be buried in a sea of unusable information, and the amount of computation involved in generating anything useful from an evolutionary algorithm, at least when it comes to testing complex applications such as a game, is going to be expensive. Let me elaborate.&lt;/p&gt; 
 &lt;p&gt;Back in &lt;a href="https://www.gamedriver.io/blog/posts/2018/october/the-future-of-ai-in-gaming/?"&gt;October 2018&lt;/a&gt;, we published a blog that touched on the state of AI in relation to game testing at that time. There were articles and offerings from big players like OpenAI and IBM as well as videos from prominent YouTubers such as &lt;a href="https://www.youtube.com/watch?v=qv6UVOQ0F44"&gt;Sethbling&lt;/a&gt; which seem to indicate there were major shifts coming in the way that we played and tested video games. At that time, we predicted the inability of AI to adequately test incredibly complex and interactive projects. What we didn't realize then, is that even an army of individuals would not be completely up to that task. They simply lack the tools or the time to do so. Take for example a title like Cyberpunk 2077. When you multiply a massive world with thousands of objectives, and a nearly infinite number of paths, and toss in support for multiple platforms across older and current-generation hardware, it's no wonder people are looking for a better solution than just adding more hands.&lt;/p&gt; 
 &lt;p&gt;If we were to design the kind of AI solution required to test a game like Cyberpunk 2077, it would require a combination of techniques used for both exploratory testing and generative approaches, as well as a vast sea of existing gameplay data, none of which existed at the time. And it would need to be massively parallel. All of this leaves us with little more than bots that can mindlessly run around in world space interacting with objects clicking on things, accepting quests but never completing them, shooting anything that moves, or simply dying.&lt;/p&gt; 
 &lt;p&gt;&lt;img style="max-width: 277px" src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/cyberpunk-bug.gif?width=277&amp;amp;height=370&amp;amp;name=cyberpunk-bug.gif" alt="" width="277" height="370"&gt;&lt;/p&gt; 
 &lt;h2&gt;Even the most powerful AI tools will still struggle to understand the context of a gaming environment&lt;/h2&gt; 
 &lt;p&gt;The problem in gaming is context. Examples such as &lt;a href="https://gymnasium.farama.org/environments/box2d/car_racing/"&gt;OpenAI gymnasium&lt;/a&gt; demonstrate the ability to play a game given a limited set of actions and a simple observation + reward system. These are often 2D side scrollers or even simpler games like pong where the result is as simple as monitoring that a dot stays alive on the screen. But what these approaches lack is the context of what they're doing, and this can come in one of two ways. Number one, by interpreting what's on the screen at any given time and applying that context to the behavioral output of the agent. And two, by capturing data from the underlying application or engine that will tell us what is happening in the scene when we perform our inputs. Sometimes this comes from visible data such as the score on the screen, and sometimes this comes from underlying game state information. But without context our inputs are meaningless. The AI might be able to navigate through a level to the end after hundreds or thousands of iterations, but that cannot be applied to any sort of testing or outcome-driven objective (i.e. “Finish the main quest line”).&lt;/p&gt; 
 &lt;h2&gt;User intent is everything when it comes to finding high-value bugs&lt;/h2&gt; 
 &lt;p&gt;So does this mean AI can never be applied to game testing? Absolutely not, but there are challenges that need to be addressed. By their nature, tests compare an expected behavior to an actual result which requires some sense of the intent. Intent in this context refers to what’s happening in the game, but also what experience the designers meant to deliver. Establishing intent on a high level, such as “move right until the player reaches the end” in the &lt;a href="https://www.youtube.com/watch?v=qv6UVOQ0F44"&gt;MarI/O&lt;/a&gt; example is simple enough, but what happens along the way and whether everything is functioning as intended is much more nuanced. What it means is that we need to start capturing the data that will be used to train future algorithms in order to make the dream of AI-driven game testing a reality. This introduces additional problems, such as what telemetry and user context can we capture to provide both meaningful usage and behavior data for one game, but also what can be reused across multiple properties.&lt;/p&gt; 
 &lt;p&gt;Unlike emails, documents, or web pages, video games are rarely similar enough to draw context from one that could be meaningfully applied to another. In a long enough lived project, we might be able to gather enough telemetry and user behavior to determine what types of tests need to be run for future versions, but it would be difficult to the point of impractical to try and derive any meaningful information from a game like World of Warcraft and try to apply that information to drive tests against Cyberpunk 2077.&lt;/p&gt; 
 &lt;p&gt;To say that AI won’t be used for game testing would be akin to predicting the horse-driven wagon would outlive the automobile. There have been several &lt;a href="https://repository.library.northeastern.edu/files/neu:m0455c95d/fulltext.pdf"&gt;Ph.D. theses&lt;/a&gt; written on this subject, and indeed that work seems promising. However, these are based on the assumption that gameplay without context is meaningful in itself. In some use cases, this can be true, such as finding holes in the game world or testing whether the player can navigate within the confines of a procedurally generated environment such as those created in No Man’s Sky. But more meaningful tests such as whether enemies behave as they should when the user is in stealth, or if player damage numbers meet expectations with certain combinations of gear and buffs/debuffs will require the agents to know much more about the intent of the game than is currently possible.&lt;/p&gt; 
 &lt;p&gt;In short, AI will need to walk before it can &lt;a href="https://www.youtube.com/watch?v=gn4nRCC9TwQ"&gt;run&lt;/a&gt;. And right now, as an industry, automated game testing is still learning to crawl.&lt;/p&gt; 
 &lt;p&gt;&lt;img src="https://www2.gamedriver.io/hubfs/Imported_Blog_Media/deepmind-ai-walk.gif" alt=""&gt;&lt;/p&gt; 
 &lt;h2&gt;AI as a tool that will complement games testers, not replace them&lt;/h2&gt; 
 &lt;p&gt;Here at GameDriver, we believe the future of video game and Immersive Experience testing is a combination of automated functional testing to make sure that all of the features and systems “work” as designed; AI-driven “behavioral testing” to test the bounds of what is possible given a set of rules and conditions; and human-powered experience testing to ensure the intent of the experience is desirable, whether that be for entertainment, social interaction, education, or something entirely new. In this sense, the tester is not the horse being replaced by the car, but the one steering the wagon. AI is simply the engine powering the car that would replace the wagon, as in our previous analogy.&lt;/p&gt; 
 &lt;p&gt;This will change the well-known &lt;a href="https://martinfowler.com/articles/practical-test-pyramid.html"&gt;testing pyramid&lt;/a&gt; from one that breaks down the different types of technical tests that are performed, to one that covers the different fundamental aspects of our experiences, including the functionality, limitations, and desired experience of a given application or game. We believe this shift is not only inevitable but necessary for the industry to succeed as it will allow for the delivery of much more complex and high-quality Immersive Experiences.&lt;/p&gt; 
 &lt;p&gt;&lt;img src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/pyramids.png?width=763&amp;amp;height=316&amp;amp;name=pyramids.png" alt="" width="763" height="316"&gt;&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2023%2Fmay%2Fthe-revised-future-of-ai-in-game-testing&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>Posts</category>
      <pubDate>Tue, 12 May 2026 15:44:00 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2023/may/the-revised-future-of-ai-in-game-testing</guid>
      <dc:date>2026-05-12T15:44:00Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>Introducing the Ambassador Program and Educational License | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2022/march/introducing-the-ambassador-program-and-educational-license</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p&gt;GameDriver was founded on a desire to bring tried-and-true automated testing methods to an industry in desperate need of it. Now, we’re also eager to ensure these same tools get in on the ground floor of the organizations and institutions that directly impact the future of gaming.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;That’s where our Educational License and Ambassador Program come in. Whether you’re a lean independent team looking to make your mark or an educator implementing deeper knowledge of testing in your curriculum, we believe that introducing test automation into your development pipeline or curriculum can have a significant positive impact on your project. That’s why we’re making GameDriver accessible to you, for free*.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;Ambassador Program&lt;/h2&gt; 
 &lt;p&gt;If you have a small, independent team that makes less than $100,000 in yearly revenue or total funding, the Ambassador Program is a great choice for helping your project flourish. The program gives you access to up to two (2) node-locked licenses to use the GameDriver SDK – at no cost. You’ll also gain access to our technical documentation, and an engaging, supportive online community for any questions or concerns you may have. Our partners at Unity offer a similarly structured package, &lt;a href="https://store.unity.com/products/unity-personal"&gt;Unity Personal&lt;/a&gt;, so the Ambassador Program should be familiar to developers who have used this to get their ideas off the ground.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;All we ask in return for participation in the Ambassador Program is permission to use your logo and an &lt;strong&gt;unfiltered testimony after three months of use&lt;/strong&gt;. We want to ensure that we can hear about the ups and downs of your time with the GameDriver SDK, let those experiences inform future users, and improve our product!&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;Educational License&lt;/h2&gt; 
 &lt;p&gt;Game development is constantly evolving, and it’s crucial for educators to have access to these ever-changing tools so they can strengthen the future creatives of gaming. With that in mind, GameDriver is offering an Educational License for those who want to incorporate test automation as part of their development curriculum. As this area of testing continues to grow, we want to help prospective testers, engineers, and other aspiring development professionals understand test automation early on.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;If you choose to pick up an Educational License for your class, you’ll gain access to unlimited use of the GameDriver SDK. Much like the Ambassador Program, you’ll also gain access to our technical documentation and online community, where we offer close-knit support. The same requests for testimony after three months and permission to use your logo (in this case, your educational institution’s logo) also apply to this license.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;Get Started Today&lt;/h2&gt; 
 &lt;p&gt;Implementing GameDriver can help to improve time to market, reduce manual test execution time, and improve the overall test coverage and quality of your projects. With the Ambassador Program and Educational Licenses, all you need to start is to &lt;strong&gt;&lt;a href="https://gamedriver.io/ambassador?"&gt;fill out this form&lt;/a&gt;&lt;/strong&gt;&amp;nbsp;and tell us about your project and needs. Someone will then contact you within 3 business days with the license information and information to help you get started.&lt;/p&gt; 
 &lt;p&gt;We’re thrilled to have small creators and educators consider us for their first foray into test automation. With these programs, we hope to offer you a reliable method for enhancing the quality of your project, or the depth of your coursework, and we can’t wait to hear more feedback and success stories from using GameDriver!&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p&gt;GameDriver was founded on a desire to bring tried-and-true automated testing methods to an industry in desperate need of it. Now, we’re also eager to ensure these same tools get in on the ground floor of the organizations and institutions that directly impact the future of gaming.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;That’s where our Educational License and Ambassador Program come in. Whether you’re a lean independent team looking to make your mark or an educator implementing deeper knowledge of testing in your curriculum, we believe that introducing test automation into your development pipeline or curriculum can have a significant positive impact on your project. That’s why we’re making GameDriver accessible to you, for free*.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;Ambassador Program&lt;/h2&gt; 
 &lt;p&gt;If you have a small, independent team that makes less than $100,000 in yearly revenue or total funding, the Ambassador Program is a great choice for helping your project flourish. The program gives you access to up to two (2) node-locked licenses to use the GameDriver SDK – at no cost. You’ll also gain access to our technical documentation, and an engaging, supportive online community for any questions or concerns you may have. Our partners at Unity offer a similarly structured package, &lt;a href="https://store.unity.com/products/unity-personal"&gt;Unity Personal&lt;/a&gt;, so the Ambassador Program should be familiar to developers who have used this to get their ideas off the ground.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;All we ask in return for participation in the Ambassador Program is permission to use your logo and an &lt;strong&gt;unfiltered testimony after three months of use&lt;/strong&gt;. We want to ensure that we can hear about the ups and downs of your time with the GameDriver SDK, let those experiences inform future users, and improve our product!&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;Educational License&lt;/h2&gt; 
 &lt;p&gt;Game development is constantly evolving, and it’s crucial for educators to have access to these ever-changing tools so they can strengthen the future creatives of gaming. With that in mind, GameDriver is offering an Educational License for those who want to incorporate test automation as part of their development curriculum. As this area of testing continues to grow, we want to help prospective testers, engineers, and other aspiring development professionals understand test automation early on.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;If you choose to pick up an Educational License for your class, you’ll gain access to unlimited use of the GameDriver SDK. Much like the Ambassador Program, you’ll also gain access to our technical documentation and online community, where we offer close-knit support. The same requests for testimony after three months and permission to use your logo (in this case, your educational institution’s logo) also apply to this license.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;Get Started Today&lt;/h2&gt; 
 &lt;p&gt;Implementing GameDriver can help to improve time to market, reduce manual test execution time, and improve the overall test coverage and quality of your projects. With the Ambassador Program and Educational Licenses, all you need to start is to &lt;strong&gt;&lt;a href="https://gamedriver.io/ambassador?"&gt;fill out this form&lt;/a&gt;&lt;/strong&gt;&amp;nbsp;and tell us about your project and needs. Someone will then contact you within 3 business days with the license information and information to help you get started.&lt;/p&gt; 
 &lt;p&gt;We’re thrilled to have small creators and educators consider us for their first foray into test automation. With these programs, we hope to offer you a reliable method for enhancing the quality of your project, or the depth of your coursework, and we can’t wait to hear more feedback and success stories from using GameDriver!&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2022%2Fmarch%2Fintroducing-the-ambassador-program-and-educational-license&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>News</category>
      <pubDate>Tue, 12 May 2026 15:43:59 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2022/march/introducing-the-ambassador-program-and-educational-license</guid>
      <dc:date>2026-05-12T15:43:59Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>How Automation and LiveOps Go Hand-In-Hand | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2022/september/how-automation-and-liveops-go-hand-in-hand</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p&gt;Many video games have become living, ongoing products. A game's life cycle has more ways to be extended and maintained than ever before, owing in large part to the lessons and successes of various live service games. Whether you’re a free-to-play mobile developer, or nurturing a dedicated MMO player base, &lt;a href="https://www.applovin.com/blog/what-are-live-ops-and-why-are-they-important/"&gt;LiveOps&lt;/a&gt; is what keeps your game’s entire ecosystem going strong.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;LiveOps is short for “live operations”, and is defined as releasing updates and fixes to a game without the need of releasing an entirely new version. It’s a customer-oriented development model for ongoing Immersive Experiences.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;While this model may revolve around the user experience, it requires a focused, flexible workflow in order to stay on top of customer demand. This means developers need a tech stack that can iterate quickly, while maintaining reliable quality. Automation has yet to mature in game testing, but here are a few ways it can fall into the LiveOps mix.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;LiveOps Require Cost-Saving Solutions&lt;/h2&gt; 
 &lt;p&gt;The scope of live service means teams need to get creative from an operational standpoint. Saving costs while producing high quality content is key to success. One way to ensure faster delivery is by using &lt;a href="https://www.adjust.com/blog/what-is-live-ops/"&gt;recyclable assets.&lt;/a&gt; Refreshing existing assets for use in new content is a well established practice across game development, but LiveOps products need to emphasize this method even more.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;It’s one thing to cut costs in asset creation, but what about verification? This is where automated testing can accelerate pipelines. Content needs to be tested for functionality not just within new updates, but verified against older content as well. Running test scripts that can cover basic feature functionality, complex object interactions, and other quality assurance minutia will reduce the burden on manual testers significantly.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;&lt;a href="https://gamedriver.io/?"&gt;Test automation &lt;/a&gt;can introduce a whole new angle to budget balancing, while also saving developers more time and personal bandwidth for other important facets of creation.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;LiveOps Success Relies on Community Feedback&lt;/h2&gt; 
 &lt;p&gt;As more and more video games become active services, these same experiences will increasingly depend on reacting to player feedback. In many cases, player communities don’t focus on technical functionality as much as they do subjective experiences.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;Combat balancing, quality-of-life features–each of these frequently referenced issues have very little to do with basic test verification. Rather, it’s up to QA, user research, community management, and other teams to initiate complex changes on the existing product.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;Unfortunately, &lt;a href="https://gamedriver.io/blog/posts/2022/may/how-test-automation-empowers-manual-testers/?"&gt;current QA practices&lt;/a&gt; are not optimal for this kind of turnaround at-scale. An automated testing workflow, however, would allow basic performance, stability and intended function to be verified, without skipping it and leaving players disappointed by poor quality. Instead, manual testers will be freed up to take on any community-generated changes as they come, and allow for a more polished experience to be pushed live.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;LiveOps Developers Need to Continue Being Creative&lt;/h2&gt; 
 &lt;p&gt;Taking advantage of test automation can have a twofold effect on LiveOps: producers and managerial staff can get creative from a budgetary perspective, while the time and money saved in the process can nurture more creativity from staff making the games that are known and loved.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;Video game development is complex enough as it is, and so too are the demands of those that consume this content. Implementing more efficient processes like test automation will have lasting, tangible effects on Immersive Experiences of all shapes and sizes, allowing for better games to be made faster, and meeting the needs of players and creators alike.&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p&gt;Many video games have become living, ongoing products. A game's life cycle has more ways to be extended and maintained than ever before, owing in large part to the lessons and successes of various live service games. Whether you’re a free-to-play mobile developer, or nurturing a dedicated MMO player base, &lt;a href="https://www.applovin.com/blog/what-are-live-ops-and-why-are-they-important/"&gt;LiveOps&lt;/a&gt; is what keeps your game’s entire ecosystem going strong.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;LiveOps is short for “live operations”, and is defined as releasing updates and fixes to a game without the need of releasing an entirely new version. It’s a customer-oriented development model for ongoing Immersive Experiences.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;While this model may revolve around the user experience, it requires a focused, flexible workflow in order to stay on top of customer demand. This means developers need a tech stack that can iterate quickly, while maintaining reliable quality. Automation has yet to mature in game testing, but here are a few ways it can fall into the LiveOps mix.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;LiveOps Require Cost-Saving Solutions&lt;/h2&gt; 
 &lt;p&gt;The scope of live service means teams need to get creative from an operational standpoint. Saving costs while producing high quality content is key to success. One way to ensure faster delivery is by using &lt;a href="https://www.adjust.com/blog/what-is-live-ops/"&gt;recyclable assets.&lt;/a&gt; Refreshing existing assets for use in new content is a well established practice across game development, but LiveOps products need to emphasize this method even more.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;It’s one thing to cut costs in asset creation, but what about verification? This is where automated testing can accelerate pipelines. Content needs to be tested for functionality not just within new updates, but verified against older content as well. Running test scripts that can cover basic feature functionality, complex object interactions, and other quality assurance minutia will reduce the burden on manual testers significantly.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;&lt;a href="https://gamedriver.io/?"&gt;Test automation &lt;/a&gt;can introduce a whole new angle to budget balancing, while also saving developers more time and personal bandwidth for other important facets of creation.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;LiveOps Success Relies on Community Feedback&lt;/h2&gt; 
 &lt;p&gt;As more and more video games become active services, these same experiences will increasingly depend on reacting to player feedback. In many cases, player communities don’t focus on technical functionality as much as they do subjective experiences.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;Combat balancing, quality-of-life features–each of these frequently referenced issues have very little to do with basic test verification. Rather, it’s up to QA, user research, community management, and other teams to initiate complex changes on the existing product.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;Unfortunately, &lt;a href="https://gamedriver.io/blog/posts/2022/may/how-test-automation-empowers-manual-testers/?"&gt;current QA practices&lt;/a&gt; are not optimal for this kind of turnaround at-scale. An automated testing workflow, however, would allow basic performance, stability and intended function to be verified, without skipping it and leaving players disappointed by poor quality. Instead, manual testers will be freed up to take on any community-generated changes as they come, and allow for a more polished experience to be pushed live.&amp;nbsp;&lt;/p&gt; 
 &lt;h2&gt;LiveOps Developers Need to Continue Being Creative&lt;/h2&gt; 
 &lt;p&gt;Taking advantage of test automation can have a twofold effect on LiveOps: producers and managerial staff can get creative from a budgetary perspective, while the time and money saved in the process can nurture more creativity from staff making the games that are known and loved.&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;Video game development is complex enough as it is, and so too are the demands of those that consume this content. Implementing more efficient processes like test automation will have lasting, tangible effects on Immersive Experiences of all shapes and sizes, allowing for better games to be made faster, and meeting the needs of players and creators alike.&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2022%2Fseptember%2Fhow-automation-and-liveops-go-hand-in-hand&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>Posts</category>
      <pubDate>Tue, 12 May 2026 15:43:25 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2022/september/how-automation-and-liveops-go-hand-in-hand</guid>
      <dc:date>2026-05-12T15:43:25Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>XRDriver at AWE 2024: Transforming AR/VR Development</title>
      <link>https://www2.gamedriver.io/blog/blog/2024/june/xrdriver-awe</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p class="intro lg"&gt;The world of AR, VR, and XR is buzzing with excitement as we continue headlong into 2024. New technologies are emerging, changing the way we interact with digital environments.This year, we're thrilled to showcase XRDriver at AWE 2024 in Long Beach from June 18-20. Swing by Booth #731 to see what all the hype is about!&lt;/p&gt; 
 &lt;p class="intro lg"&gt;&amp;nbsp;&lt;/p&gt; 
 &lt;h1 class="intro lg"&gt;Why XRDriver?&lt;/h1&gt; 
 &lt;p class="intro lg"&gt;&lt;br&gt;&lt;a href="https://www2.gamedriver.io/xrdriver?" title="XRDriver"&gt;XRDriver&lt;/a&gt; is your go-to solution for automated testing in AR/VR/XR applications. Whether you're developing immersive simualtions, virtual training modules, or cutting-edge healthcare simulations, XRDriver ensures your projects run smoothly and deliver the best user experience.&lt;/p&gt; 
 &lt;div class="mceNonEditable embeditem"&gt;  
 &lt;/div&gt; 
 &lt;h2&gt;Key Areas Where XRDriver Makes a Difference:&lt;/h2&gt; 
 &lt;h6&gt;1. Education and Training&lt;/h6&gt; 
 &lt;p&gt;Education and training are becoming more interactive thanks to XR. Imagine virtual classrooms where students can explore historical events or conduct science experiments in a risk-free environment. XRDriver helps developers test these applications thoroughly, ensuring they’re reliable and effective. This aligns with recent advances like Apple’s visionOS 2, which introduces new spatial computing features for enhanced educational experiences​ (&lt;a href="https://www.auganix.org/xr-news-apple-unveils-visionos-2-at-wwdc-2024-bringing-new-spatial-computing-features-to-vision-pro/" title="Auganix.org"&gt;Auganix.org&lt;/a&gt;)​.&lt;/p&gt; 
 &lt;h6&gt;2. Remote Training and Collaboration&lt;/h6&gt; 
 &lt;p&gt;The shift to remote work has made virtual collaboration tools essential. XR technologies now create immersive virtual environments for effective team collaboration. These tools are especially useful in hazardous training environments, allowing for realistic simulations without risks. XRDriver ensures these applications are tested for reliability and safety, facilitating seamless remote training and collaboration.&lt;/p&gt; 
 &lt;h3&gt;&lt;span&gt;&lt;img src="https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png" alt="" width="391" height="260"&gt;&lt;/span&gt;&lt;/h3&gt; 
 &lt;h6&gt;3. Healthcare Applications&lt;/h6&gt; 
 &lt;p&gt;The healthcare industry is a major adopter of XR technology. From virtual anatomy lessons to surgical simulations, XRDriver is crucial in testing these applications to ensure they’re safe and effective. This helps healthcare professionals practice and perfect their skills in a controlled, virtual environment.&lt;/p&gt; 
 &lt;p&gt;&lt;span&gt;&lt;img src="https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png" alt="" width="511" height="286"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;h6&gt;4. Retail and E-commerce&lt;/h6&gt; 
 &lt;p&gt;Retail is getting a digital makeover with XR. Virtual try-ons, AR-based product demos, and interactive shopping experiences are making online shopping more engaging. XRDriver helps test these applications to ensure they provide a smooth and enjoyable customer experience.&lt;/p&gt; 
 &lt;p&gt;&lt;span&gt;&lt;img src="https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png" alt="" width="482" height="271"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;h5&gt;Conclusion:&lt;/h5&gt; 
 &lt;p&gt;XRDriver is at the forefront of ensuring that AR/VR/XR applications are reliable, efficient, and user-friendly. We’re excited to share our innovations with you at AWE 2024. Don't miss out—visit Booth #731 to see XRDriver in action and learn how it can benefit your projects.&lt;/p&gt; 
 &lt;p&gt;&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;To book a demo and experience the full benefit of automated testing using XRDriver by GameDriver, please visit&amp;nbsp;&lt;a href="https://www.gamedriver.io/?"&gt;https://www.gamedriver.io/&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p class="intro lg"&gt;The world of AR, VR, and XR is buzzing with excitement as we continue headlong into 2024. New technologies are emerging, changing the way we interact with digital environments.This year, we're thrilled to showcase XRDriver at AWE 2024 in Long Beach from June 18-20. Swing by Booth #731 to see what all the hype is about!&lt;/p&gt; 
 &lt;p class="intro lg"&gt;&amp;nbsp;&lt;/p&gt; 
 &lt;h1 class="intro lg"&gt;Why XRDriver?&lt;/h1&gt; 
 &lt;p class="intro lg"&gt;&lt;br&gt;&lt;a href="https://www2.gamedriver.io/xrdriver?" title="XRDriver"&gt;XRDriver&lt;/a&gt; is your go-to solution for automated testing in AR/VR/XR applications. Whether you're developing immersive simualtions, virtual training modules, or cutting-edge healthcare simulations, XRDriver ensures your projects run smoothly and deliver the best user experience.&lt;/p&gt; 
 &lt;div class="mceNonEditable embeditem"&gt; 
  &lt;iframe width="360" height="203" src="https://www.youtube.com/embed/nQN6hoCd2rI?feature=oembed" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt; 
 &lt;/div&gt; 
 &lt;h2&gt;Key Areas Where XRDriver Makes a Difference:&lt;/h2&gt; 
 &lt;h6&gt;1. Education and Training&lt;/h6&gt; 
 &lt;p&gt;Education and training are becoming more interactive thanks to XR. Imagine virtual classrooms where students can explore historical events or conduct science experiments in a risk-free environment. XRDriver helps developers test these applications thoroughly, ensuring they’re reliable and effective. This aligns with recent advances like Apple’s visionOS 2, which introduces new spatial computing features for enhanced educational experiences​ (&lt;a href="https://www.auganix.org/xr-news-apple-unveils-visionos-2-at-wwdc-2024-bringing-new-spatial-computing-features-to-vision-pro/" title="Auganix.org"&gt;Auganix.org&lt;/a&gt;)​.&lt;/p&gt; 
 &lt;h6&gt;2. Remote Training and Collaboration&lt;/h6&gt; 
 &lt;p&gt;The shift to remote work has made virtual collaboration tools essential. XR technologies now create immersive virtual environments for effective team collaboration. These tools are especially useful in hazardous training environments, allowing for realistic simulations without risks. XRDriver ensures these applications are tested for reliability and safety, facilitating seamless remote training and collaboration.&lt;/p&gt; 
 &lt;h3&gt;&lt;span&gt;&lt;img src="https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png" alt="" width="391" height="260"&gt;&lt;/span&gt;&lt;/h3&gt; 
 &lt;h6&gt;3. Healthcare Applications&lt;/h6&gt; 
 &lt;p&gt;The healthcare industry is a major adopter of XR technology. From virtual anatomy lessons to surgical simulations, XRDriver is crucial in testing these applications to ensure they’re safe and effective. This helps healthcare professionals practice and perfect their skills in a controlled, virtual environment.&lt;/p&gt; 
 &lt;p&gt;&lt;span&gt;&lt;img src="https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png" alt="" width="511" height="286"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;h6&gt;4. Retail and E-commerce&lt;/h6&gt; 
 &lt;p&gt;Retail is getting a digital makeover with XR. Virtual try-ons, AR-based product demos, and interactive shopping experiences are making online shopping more engaging. XRDriver helps test these applications to ensure they provide a smooth and enjoyable customer experience.&lt;/p&gt; 
 &lt;p&gt;&lt;span&gt;&lt;img src="https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png" alt="" width="482" height="271"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;h5&gt;Conclusion:&lt;/h5&gt; 
 &lt;p&gt;XRDriver is at the forefront of ensuring that AR/VR/XR applications are reliable, efficient, and user-friendly. We’re excited to share our innovations with you at AWE 2024. Don't miss out—visit Booth #731 to see XRDriver in action and learn how it can benefit your projects.&lt;/p&gt; 
 &lt;p&gt;&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;To book a demo and experience the full benefit of automated testing using XRDriver by GameDriver, please visit&amp;nbsp;&lt;a href="https://www.gamedriver.io/?"&gt;https://www.gamedriver.io/&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2024%2Fjune%2Fxrdriver-awe&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>News</category>
      <pubDate>Tue, 12 May 2026 15:43:24 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2024/june/xrdriver-awe</guid>
      <dc:date>2026-05-12T15:43:24Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>Releases | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/releases</link>
      <description>&lt;div class="text"&gt; 
 &lt;p class="p1 intro lg"&gt;Visit our &lt;a href="https://gamedriver.io/download/?" title="Download"&gt;Downloads page&lt;/a&gt; to access the latest version of the GameDriver plugin for Unity or Unreal Engine and the accompanying .NET API.&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text"&gt; 
 &lt;p class="p1 intro lg"&gt;Visit our &lt;a href="https://gamedriver.io/download/?" title="Download"&gt;Downloads page&lt;/a&gt; to access the latest version of the GameDriver plugin for Unity or Unreal Engine and the accompanying .NET API.&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2Freleases&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <pubDate>Tue, 12 May 2026 15:43:23 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/releases</guid>
      <dc:date>2026-05-12T15:43:23Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>Our Commitment to the Industry | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2020/april/our-commitment-to-the-industry</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p class="font_9"&gt;At GameDriver, one of our core principles is that we aim to be a partner to the gaming industry. Over the last few months, many of us have been affected by the COVID-19 pandemic and here at GameDriver HQ things are no different. As a virtual company we’re lucky to be accustomed to a work-from-home situation but we know and appreciate the magnitude of the disruption that many are coming to terms with. Up until this point, we’ve been focused on helping and supporting our users adapt to their new working conditions and supporting them wherever possible as we all try to protect our families, friends and loved ones.&lt;/p&gt; 
 &lt;p class="font_9"&gt;Now that we’re becoming adjusted to our new and temporary surroundings, we’re starting to take stock of where we find ourselves and the state of the industry we’re all a part of:&lt;/p&gt; 
 &lt;ul class="font_8"&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;As a whole, the video game industry is remarkably recession-proof, particularly when we’re under recommendations or order to stay-at-home or shelter-in-place&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;More time at home means there’s new opportunities to reach out to the “lapsed gamer” - the person who may have played video games in the past but for various reasons stopped and are now returning&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;Many studios operate on razor thin margins and during a time of uncertainty, many are needing to furlough or lay off employees&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;Shelter-in-place and national quarantines create difficulties for traditional game testing practices that rely on people being at work&lt;/p&gt; &lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p class="font_9"&gt;As a partner to the industry, we want to support you.&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;Adjusting to Work-from-Home&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;Some companies are reporting that work-from-home initiatives are actually resulting in higher levels of productivity than were forecast or expected. This is in part because of shortened commutes, fewer distractions and employees being better able to set their own priorities.&amp;nbsp;&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;Working Through the Quarantines&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;Social distancing and quarantine guidelines are making it incredibly difficult to perform manual testing outside of the home. Additionally, the shutdown of entire offshore testing hubs has ground the most common method of play-testing to a stop.&amp;nbsp;&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;Engaging a new Audience&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;Social distancing and shelter-in-place guidelines are creating an opportunity for expansion for existing and new game properties. Without pre-existing loyalties, these players represent an opportunity for each and every game studio. The flip-side of this coin is that they’re not yet investing in your game, and producing a compelling and immersive experience is an even higher priority.&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;How GameDriver is Helping&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;GameDriver is all about finding the best way to help improve your testing practices. To support the industry we all rely on, we’ve decided to offer a 60 day license of our GameDriver Professional Edition for a period of 60 days.&lt;/p&gt; 
 &lt;ul class="font_8"&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;For game studios, GameDriver helps improve your ability to validate content, features, and new experiences while allowing your testers to stay away from the office.&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;For game testers, whether working from home or temporarily inconvenienced due to furlough or layoff, we’ll provide the tools necessary to learn how to use GameDriver and give yourself a leg up on the competition.&lt;/p&gt; &lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p class="font_9"&gt;Request your free trial license&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="#" title="Download"&gt;&lt;span class="color_2"&gt;here today&lt;/span&gt;&lt;/a&gt;. To help you get started, we’ll be inviting users to join our community Slack channel and publishing a series of webinars and tutorials throughout the Spring and Summer of 2020.&lt;/p&gt; 
 &lt;p class="font_9"&gt;And together, we'll get through this.&lt;/p&gt; 
 &lt;p class="font_9"&gt;&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p class="font_9"&gt;At GameDriver, one of our core principles is that we aim to be a partner to the gaming industry. Over the last few months, many of us have been affected by the COVID-19 pandemic and here at GameDriver HQ things are no different. As a virtual company we’re lucky to be accustomed to a work-from-home situation but we know and appreciate the magnitude of the disruption that many are coming to terms with. Up until this point, we’ve been focused on helping and supporting our users adapt to their new working conditions and supporting them wherever possible as we all try to protect our families, friends and loved ones.&lt;/p&gt; 
 &lt;p class="font_9"&gt;Now that we’re becoming adjusted to our new and temporary surroundings, we’re starting to take stock of where we find ourselves and the state of the industry we’re all a part of:&lt;/p&gt; 
 &lt;ul class="font_8"&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;As a whole, the video game industry is remarkably recession-proof, particularly when we’re under recommendations or order to stay-at-home or shelter-in-place&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;More time at home means there’s new opportunities to reach out to the “lapsed gamer” - the person who may have played video games in the past but for various reasons stopped and are now returning&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;Many studios operate on razor thin margins and during a time of uncertainty, many are needing to furlough or lay off employees&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;Shelter-in-place and national quarantines create difficulties for traditional game testing practices that rely on people being at work&lt;/p&gt; &lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p class="font_9"&gt;As a partner to the industry, we want to support you.&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;Adjusting to Work-from-Home&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;Some companies are reporting that work-from-home initiatives are actually resulting in higher levels of productivity than were forecast or expected. This is in part because of shortened commutes, fewer distractions and employees being better able to set their own priorities.&amp;nbsp;&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;Working Through the Quarantines&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;Social distancing and quarantine guidelines are making it incredibly difficult to perform manual testing outside of the home. Additionally, the shutdown of entire offshore testing hubs has ground the most common method of play-testing to a stop.&amp;nbsp;&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;Engaging a new Audience&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;Social distancing and shelter-in-place guidelines are creating an opportunity for expansion for existing and new game properties. Without pre-existing loyalties, these players represent an opportunity for each and every game studio. The flip-side of this coin is that they’re not yet investing in your game, and producing a compelling and immersive experience is an even higher priority.&lt;/p&gt; 
 &lt;p class="font_9"&gt;&lt;strong&gt;How GameDriver is Helping&lt;/strong&gt;&lt;/p&gt; 
 &lt;p class="font_9"&gt;GameDriver is all about finding the best way to help improve your testing practices. To support the industry we all rely on, we’ve decided to offer a 60 day license of our GameDriver Professional Edition for a period of 60 days.&lt;/p&gt; 
 &lt;ul class="font_8"&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;For game studios, GameDriver helps improve your ability to validate content, features, and new experiences while allowing your testers to stay away from the office.&lt;/p&gt; &lt;/li&gt; 
  &lt;li&gt; &lt;p class="font_9"&gt;For game testers, whether working from home or temporarily inconvenienced due to furlough or layoff, we’ll provide the tools necessary to learn how to use GameDriver and give yourself a leg up on the competition.&lt;/p&gt; &lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p class="font_9"&gt;Request your free trial license&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="#" title="Download"&gt;&lt;span class="color_2"&gt;here today&lt;/span&gt;&lt;/a&gt;. To help you get started, we’ll be inviting users to join our community Slack channel and publishing a series of webinars and tutorials throughout the Spring and Summer of 2020.&lt;/p&gt; 
 &lt;p class="font_9"&gt;And together, we'll get through this.&lt;/p&gt; 
 &lt;p class="font_9"&gt;&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2020%2Fapril%2Four-commitment-to-the-industry&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>Posts</category>
      <pubDate>Tue, 12 May 2026 15:43:22 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2020/april/our-commitment-to-the-industry</guid>
      <dc:date>2026-05-12T15:43:22Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>Room8Group Announces New LQA Service Offering Powered by GameDriver | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2025/march/room8group-announces-new-lqa-service-offering-powered-by-gamedriver</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p&gt;Our partners at &lt;span style="text-decoration: underline;"&gt;&lt;a href="https://room8group.com/"&gt;Room8Group&lt;/a&gt;&lt;/span&gt; have released a &lt;span style="text-decoration: underline;"&gt;&lt;a href="https://www.youtube.com/watch?v=gIo4SV2l908"&gt;YouTube video&lt;/a&gt;&lt;/span&gt; announcing a new service offering focusing on automating Localization (or Linguistic) Quality Assurance (LQA) using GameDriver.&lt;/p&gt; 
 &lt;p&gt;LQA is a crucial step in game development that ensures the accuracy, consistency, and cultural appropriateness of in-game text, voiceovers, and UI elements across different languages. A well-executed LQA process helps deliver a polished, immersive experience to global audiences by catching translation errors, awkward phrasing, and cultural missteps that could break immersion or cause offense.&lt;/p&gt; 
 &lt;p&gt;Beyond just language accuracy, LQA also verifies that localized text fits within UI constraints, maintains the intended tone and context, and works seamlessly with gameplay elements. In an industry where international markets are key to success, effective LQA enhances player engagement, minimizes reputational risks, and ensures a game feels natural to players worldwide.&lt;/p&gt; 
 &lt;p&gt;While LQA is critical to reach the widest possible audience for your game, it is also very time consuming. Validating all of the language assets in a game (or XR application) requires large teams with specific language skills to navigate through menus, dialog trees, and gameplay elements. Often, simply sourcing the right resources to complete this work can be difficult. This video demonstrates how Room8Group uses GameDriver to automate the process of checking these elements for localization correctness in a fast, efficient manner, so your team can focus on gameplay.&lt;/p&gt; 
 &lt;p&gt;If LQA is important to the success of your game or XR application, consider reaching out to&amp;nbsp;&lt;a href="mailto:bizdev@Room8Group.com"&gt;&lt;span style="text-decoration: underline;"&gt;bizdev@Room8Group.com&lt;/span&gt;&lt;/a&gt; today.&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p&gt;Our partners at &lt;span style="text-decoration: underline;"&gt;&lt;a href="https://room8group.com/"&gt;Room8Group&lt;/a&gt;&lt;/span&gt; have released a &lt;span style="text-decoration: underline;"&gt;&lt;a href="https://www.youtube.com/watch?v=gIo4SV2l908"&gt;YouTube video&lt;/a&gt;&lt;/span&gt; announcing a new service offering focusing on automating Localization (or Linguistic) Quality Assurance (LQA) using GameDriver.&lt;/p&gt; 
 &lt;p&gt;LQA is a crucial step in game development that ensures the accuracy, consistency, and cultural appropriateness of in-game text, voiceovers, and UI elements across different languages. A well-executed LQA process helps deliver a polished, immersive experience to global audiences by catching translation errors, awkward phrasing, and cultural missteps that could break immersion or cause offense.&lt;/p&gt; 
 &lt;p&gt;Beyond just language accuracy, LQA also verifies that localized text fits within UI constraints, maintains the intended tone and context, and works seamlessly with gameplay elements. In an industry where international markets are key to success, effective LQA enhances player engagement, minimizes reputational risks, and ensures a game feels natural to players worldwide.&lt;/p&gt; 
 &lt;p&gt;While LQA is critical to reach the widest possible audience for your game, it is also very time consuming. Validating all of the language assets in a game (or XR application) requires large teams with specific language skills to navigate through menus, dialog trees, and gameplay elements. Often, simply sourcing the right resources to complete this work can be difficult. This video demonstrates how Room8Group uses GameDriver to automate the process of checking these elements for localization correctness in a fast, efficient manner, so your team can focus on gameplay.&lt;/p&gt; 
 &lt;p&gt;If LQA is important to the success of your game or XR application, consider reaching out to&amp;nbsp;&lt;a href="mailto:bizdev@Room8Group.com"&gt;&lt;span style="text-decoration: underline;"&gt;bizdev@Room8Group.com&lt;/span&gt;&lt;/a&gt; today.&amp;nbsp;&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2025%2Fmarch%2Froom8group-announces-new-lqa-service-offering-powered-by-gamedriver&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>Posts</category>
      <pubDate>Tue, 12 May 2026 15:43:22 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2025/march/room8group-announces-new-lqa-service-offering-powered-by-gamedriver</guid>
      <dc:date>2026-05-12T15:43:22Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>GameDriver Partners with Nintendo | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2023/september/gamedriver-partners-with-nintendo</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p&gt;We are thrilled to announce our latest collaboration that promises to redefine the horizon of game development: GameDriver, Inc. has &lt;a href="https://www.bloomberg.com/press-releases/2023-08-22/gamedriver-announces-nintendo-middleware-partnership-to-enhance-game-development-on-nintendo-switch" title="Bloomberg.com"&gt;officially entered&lt;/a&gt; into a middleware partnership with the iconic gaming company, Nintendo. This collaboration aims to enhance game development on one of the most beloved and successful gaming platforms of our time – the Nintendo Switch system.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Why this matters&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;Game development is a complex orchestra of design, mechanics, and coding. Simplifying this process means developers can focus on what truly matters - crafting immersive gaming experiences. Our partnership with Nintendo signals a significant stride in this direction.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;What to expect&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;With GameDriver's automated testing capabilities seamlessly integrating into the Nintendo Switch ecosystem, developers can expect:&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;&lt;strong&gt;Streamlined Development&lt;/strong&gt;: Offering developers and testers advanced tooling to streamline the development, maintenance, and execution of automated tests.&lt;/li&gt; 
  &lt;li&gt;&lt;strong&gt;Enhanced Quality&lt;/strong&gt;: GameDriver’s prowess in testing ensures games undergo rigorous checks, potentially resulting in fewer bugs and a smoother gaming experience.&lt;/li&gt; 
  &lt;li&gt;&lt;strong&gt;Faster Time-to-Market&lt;/strong&gt;: With streamlined processes and automated regression testing, games can potentially hit the market quicker, ensuring fans don't have to wait too long for their favorite titles.&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;&lt;strong&gt;A shared vision&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;At the heart of this partnership is a shared vision between GameDriver, Inc. and Nintendo. We believe in fostering innovation, empowering studios, and ultimately delivering unforgettable gaming experiences. The Nintendo Switch, with its widespread acclaim and global fanbase, is the perfect platform to manifest this vision.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Looking ahead&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;This is just the beginning. We are confident that with Nintendo's legendary prowess in gaming and GameDriver's commitment to enhancing game development, the future holds boundless possibilities.&lt;/p&gt; 
 &lt;p&gt;To all the developers and gamers out there, gear up for a new era of gaming on the Nintendo Switch! We're excited about the journey ahead and can't wait to see the masterpieces this partnership will facilitate.&lt;/p&gt; 
 &lt;p&gt;&lt;br&gt;&lt;em&gt;Stay tuned. Play on.&lt;/em&gt;&lt;/p&gt; 
 &lt;p&gt;&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;More links to the announcement can be found below:&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;&lt;a href="https://www.marketwatch.com/press-release/gamedriver-announces-nintendo-middleware-partnership-to-enhance-game-development-on-nintendo-switch-4f5dddaa" title="Market Watch"&gt;Market Watch&lt;/a&gt;&lt;/li&gt; 
  &lt;li&gt;&lt;a href="https://www.nintendolife.com/news/2023/08/gamedriver-is-now-an-official-nintendo-middleware-tools-provider" title="Nintendo Life"&gt;Nintendo Life&lt;/a&gt;&lt;/li&gt; 
  &lt;li&gt;&lt;a href="https://nintendoeverything.com/gamedriver-middleware-tools-now-available-on-switch-to-streamline-development/" title="Nintendo Everything"&gt;Nintendo Everything&lt;/a&gt;&lt;/li&gt; 
  &lt;li&gt;&lt;a href="https://www.auganix.org/xr-news-gamedriver-announces-nintendo-middleware-partnership-to-enhance-game-development-on-nintendo-switch/" title="Auganix"&gt;Auganix&lt;/a&gt;&lt;/li&gt; 
 &lt;/ul&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p&gt;We are thrilled to announce our latest collaboration that promises to redefine the horizon of game development: GameDriver, Inc. has &lt;a href="https://www.bloomberg.com/press-releases/2023-08-22/gamedriver-announces-nintendo-middleware-partnership-to-enhance-game-development-on-nintendo-switch" title="Bloomberg.com"&gt;officially entered&lt;/a&gt; into a middleware partnership with the iconic gaming company, Nintendo. This collaboration aims to enhance game development on one of the most beloved and successful gaming platforms of our time – the Nintendo Switch system.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Why this matters&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;Game development is a complex orchestra of design, mechanics, and coding. Simplifying this process means developers can focus on what truly matters - crafting immersive gaming experiences. Our partnership with Nintendo signals a significant stride in this direction.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;What to expect&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;With GameDriver's automated testing capabilities seamlessly integrating into the Nintendo Switch ecosystem, developers can expect:&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;&lt;strong&gt;Streamlined Development&lt;/strong&gt;: Offering developers and testers advanced tooling to streamline the development, maintenance, and execution of automated tests.&lt;/li&gt; 
  &lt;li&gt;&lt;strong&gt;Enhanced Quality&lt;/strong&gt;: GameDriver’s prowess in testing ensures games undergo rigorous checks, potentially resulting in fewer bugs and a smoother gaming experience.&lt;/li&gt; 
  &lt;li&gt;&lt;strong&gt;Faster Time-to-Market&lt;/strong&gt;: With streamlined processes and automated regression testing, games can potentially hit the market quicker, ensuring fans don't have to wait too long for their favorite titles.&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;&lt;strong&gt;A shared vision&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;At the heart of this partnership is a shared vision between GameDriver, Inc. and Nintendo. We believe in fostering innovation, empowering studios, and ultimately delivering unforgettable gaming experiences. The Nintendo Switch, with its widespread acclaim and global fanbase, is the perfect platform to manifest this vision.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Looking ahead&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;This is just the beginning. We are confident that with Nintendo's legendary prowess in gaming and GameDriver's commitment to enhancing game development, the future holds boundless possibilities.&lt;/p&gt; 
 &lt;p&gt;To all the developers and gamers out there, gear up for a new era of gaming on the Nintendo Switch! We're excited about the journey ahead and can't wait to see the masterpieces this partnership will facilitate.&lt;/p&gt; 
 &lt;p&gt;&lt;br&gt;&lt;em&gt;Stay tuned. Play on.&lt;/em&gt;&lt;/p&gt; 
 &lt;p&gt;&amp;nbsp;&lt;/p&gt; 
 &lt;p&gt;More links to the announcement can be found below:&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;&lt;a href="https://www.marketwatch.com/press-release/gamedriver-announces-nintendo-middleware-partnership-to-enhance-game-development-on-nintendo-switch-4f5dddaa" title="Market Watch"&gt;Market Watch&lt;/a&gt;&lt;/li&gt; 
  &lt;li&gt;&lt;a href="https://www.nintendolife.com/news/2023/08/gamedriver-is-now-an-official-nintendo-middleware-tools-provider" title="Nintendo Life"&gt;Nintendo Life&lt;/a&gt;&lt;/li&gt; 
  &lt;li&gt;&lt;a href="https://nintendoeverything.com/gamedriver-middleware-tools-now-available-on-switch-to-streamline-development/" title="Nintendo Everything"&gt;Nintendo Everything&lt;/a&gt;&lt;/li&gt; 
  &lt;li&gt;&lt;a href="https://www.auganix.org/xr-news-gamedriver-announces-nintendo-middleware-partnership-to-enhance-game-development-on-nintendo-switch/" title="Auganix"&gt;Auganix&lt;/a&gt;&lt;/li&gt; 
 &lt;/ul&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2023%2Fseptember%2Fgamedriver-partners-with-nintendo&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>News</category>
      <pubDate>Tue, 12 May 2026 15:43:21 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2023/september/gamedriver-partners-with-nintendo</guid>
      <dc:date>2026-05-12T15:43:21Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>GameDriver 2024.03 for Unity and Unreal Engine is now available! | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2024/march/gamedriver-202403-for-unity-and-unreal-engine-is-now-available</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p&gt;The 2024.03 release was originally intended to be a minor release with just a few small features and some quality-of-life fixes thrown in for good measure. But that’s not what we ended up shipping after multiple value-added features were identified and delivered in just a few short months. This release reflects our ongoing commitment to providing a comprehensive solution for QA automation in gaming and XR and represents another significant milestone for our customers. The GameDriver 2024.03 Release includes the following new features, changes, and bug fixes.&lt;/p&gt; 
 &lt;p&gt;For more information on each of these capabilities, visit &lt;a href="https://kb.gamedriver.io/general?" title="GameDriver Support"&gt;https://kb.gamedriver.io/&lt;/a&gt;&lt;/p&gt; 
 &lt;h2&gt;Unreal Engine&lt;/h2&gt; 
 &lt;p&gt;Our goal from the previous release was to reach feature parity with our Unity version, and in this release, we have essentially reached that goal for the core features that are common to both engines This release includes new feature specific to Unreal Engine which we believe will be of significant value to those users.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Blueprints support:&lt;/strong&gt; This feature will allow you to author GameDriver tests using Unreal Engine Blueprints. Our Unreal Test Automation Framework integration provides additional capabilities in addition to those provided by the engine, as an alternative method for driving automated tests as part of the build process in addition to the standard approach, which can run independently.&lt;/p&gt; 
 &lt;p&gt;&lt;span style="border: none; display: inline-block; overflow: hidden; width: 778px; height: 427px"&gt;&lt;img style="margin-left: 0px; margin-top: 0px" src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/6bTDt8ZW_-QTAGjOfgwoyikDh0zQ-FO3WIXB3nuCHforcJtThzw5jnASUwAMCyCKPZznxivq8BVE6_yhYW2TNtOl_aT_bOjBWTDJrSLx4RCbR-_sBf5jKbbSLRFoDEbpy6dutYx8ZqLjC0-HqpiiI.png?width=778&amp;amp;height=427&amp;amp;name=6bTDt8ZW_-QTAGjOfgwoyikDh0zQ-FO3WIXB3nuCHforcJtThzw5jnASUwAMCyCKPZznxivq8BVE6_yhYW2TNtOl_aT_bOjBWTDJrSLx4RCbR-_sBf5jKbbSLRFoDEbpy6dutYx8ZqLjC0-HqpiiI.png" alt="" width="778" height="427"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Node-locked license support:&lt;/strong&gt; Beginning with the 2023.10 release, license enforcement is now enabled. This feature enables node-locked licenses to be enforced at the hostID level and allows for multiple hostIDs in a single license. For more information regarding node-locked versus unlocked licenses, please refer to the End User License Agreement available at &lt;a href="https://gamedriver.io/download?"&gt;gamedriver.io/download&lt;/a&gt;.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Misc Bug fixes and updates&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;REPL Tool color feedback&lt;/li&gt; 
  &lt;li&gt;Tap and Touch input fixes&lt;/li&gt; 
  &lt;li&gt;VR and Recorder fixes&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;h2&gt;Unity&lt;/h2&gt; 
 &lt;p&gt;At GameDriver we strive to support the latest technologies, target platforms, and popular plugins that are common in the community. This release continues that tradition with support for the latest from Unity.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Unity 2023.x support:&lt;/strong&gt; In anticipation of the release of &lt;a href="https://forum.unity.com/threads/introducing-unity-6-the-next-major-release-of-unity.1517209/"&gt;Unity 6&lt;/a&gt;, aka 2023.4.x (LTS), we have certified support for the latest version of Unity 2023.x in GameDriver, so that teams can upgrade seamlessly and leverage their test automation assets in the process.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;ECS/DOTS support:&lt;/strong&gt; Unity’s &lt;a href="https://unity.com/ecs"&gt;Entity Component System&lt;/a&gt;, or ECS, enables creators to work with a much greater number of objects in a scene without having to manage each of them individually, allowing for very large and complex scenes. This release provides support for ECS components using the HierarchyPath query language, allowing test engineers to work with ECS components at scale.&lt;/p&gt; 
 &lt;p&gt;&lt;span style="border: none; display: inline-block; overflow: hidden; width: 730px; height: 412px"&gt;&lt;img style="margin-left: 0px; margin-top: 0px" src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/psYlf4fxqXXDV5vojfBBprf6fE-TFend6mpg8NsrVm-I-G7l8ITogJr2mMKsc1WII0VSIkKhn-Mdqfzlc3ES9ymVNvsCMSo4wxUU34SlaFpgFqumVskMQbfmuvyHKhrHhqDr6OfuGgmIl0QrCdjbQ.jpg?width=730&amp;amp;height=412&amp;amp;name=psYlf4fxqXXDV5vojfBBprf6fE-TFend6mpg8NsrVm-I-G7l8ITogJr2mMKsc1WII0VSIkKhn-Mdqfzlc3ES9ymVNvsCMSo4wxUU34SlaFpgFqumVskMQbfmuvyHKhrHhqDr6OfuGgmIl0QrCdjbQ.jpg" alt="" width="730" height="412"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;a href="https://unity.com/demos/megacity-competitive-action-sample"&gt;Unity Megacity Demo built on DOTS&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Rewired input system support:&lt;/strong&gt; In addition to the input managers provided by Unity (Legacy, Input System, and OpenXR), Meta (OVR), and Microsoft (MRTK2), GameDriver now supports the popular &lt;a href="https://guavaman.com/projects/rewired/"&gt;Rewired&lt;/a&gt; input system. This allows you to automate testing using the myriad of devices supported by Rewired, and ensure consistent quality and behavior without the need for complex and time-consuming manual tests.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;OVR Gestures support:&lt;/strong&gt; Following on from our previous release which extended our XR support to include Meta’s OVR input package, this release includes support for OVR Gestures. OVR Gestures can be used to simulate human hand gestures that your application supports, without the need to wear the physical headset.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Node-locked license support:&lt;/strong&gt; Beginning with the 2023.10 release, license enforcement is now enabled. This feature enables node-locked licenses to be enforced at the hostID level and allows for multiple hostIDs in a single license. For more information regarding node-locked versus unlocked licenses, please refer to the End User License Agreement available at &lt;a href="https://gamedriver.io/download?"&gt;gamedriver.io/download&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Agent configuration updates&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;Add Agent option added under the GameDriver menu&lt;/li&gt; 
  &lt;li&gt;Change font type. This requires the user to include a .TTF file in the resources folder.&lt;/li&gt; 
  &lt;li&gt;Change font size and color.&lt;/li&gt; 
  &lt;li&gt;Change background-size, color, and opacity.&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;&lt;strong&gt;Added support for debugging SmartAgents&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Misc Bug fixes&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;SmartAgent support for getting primitive type properties&lt;/li&gt; 
  &lt;li&gt;TouchInput/Tap fixes&lt;/li&gt; 
  &lt;li&gt;Input fixes (center click, caps lock, drag selection)&lt;/li&gt; 
  &lt;li&gt;Config localization Fix&lt;/li&gt; 
  &lt;li&gt;Fixed a crashing issue when Domain Reload was disabled&lt;/li&gt; 
  &lt;li&gt;Fixed an issue where trace logging wasn't reflected in the GameDriver menu&lt;/li&gt; 
  &lt;li&gt;Fixed a potential memory leak in the HierarchyPath debugger&lt;/li&gt; 
  &lt;li&gt;Added support for high code stripping in IL2CPP*&lt;/li&gt; 
  &lt;li&gt;Fixed issue with GetObjectDistance reliability&lt;/li&gt; 
  &lt;li&gt;Miscellaneous API doc fixes&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;&lt;strong&gt;Apple Vision Pro support (Beta)&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;This release includes support for the Apple Vision Pro build target in Unity 2022 and 2023.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Known issues:&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;iOS may crash if enhanced logging is enabled. This release includes a fix to minimize this behavior, but this is a known issue within Unity.&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;The 2024.03 release for Unity maintains support for Unity 2019 (LTS) through the upcoming 2023 (LTS) and Unreal Engine 4.72 to 5.3, including all of the features and fixes listed above.&lt;/p&gt; 
 &lt;p&gt;For more information on how to leverage the latest capabilities of GameDriver to streamline your development efforts, &lt;a href="https://gamedriver.io/schedule-meeting/?"&gt;book a meeting&lt;/a&gt; with us today.&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p&gt;The 2024.03 release was originally intended to be a minor release with just a few small features and some quality-of-life fixes thrown in for good measure. But that’s not what we ended up shipping after multiple value-added features were identified and delivered in just a few short months. This release reflects our ongoing commitment to providing a comprehensive solution for QA automation in gaming and XR and represents another significant milestone for our customers. The GameDriver 2024.03 Release includes the following new features, changes, and bug fixes.&lt;/p&gt; 
 &lt;p&gt;For more information on each of these capabilities, visit &lt;a href="https://kb.gamedriver.io/general?" title="GameDriver Support"&gt;https://kb.gamedriver.io/&lt;/a&gt;&lt;/p&gt; 
 &lt;h2&gt;Unreal Engine&lt;/h2&gt; 
 &lt;p&gt;Our goal from the previous release was to reach feature parity with our Unity version, and in this release, we have essentially reached that goal for the core features that are common to both engines This release includes new feature specific to Unreal Engine which we believe will be of significant value to those users.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Blueprints support:&lt;/strong&gt; This feature will allow you to author GameDriver tests using Unreal Engine Blueprints. Our Unreal Test Automation Framework integration provides additional capabilities in addition to those provided by the engine, as an alternative method for driving automated tests as part of the build process in addition to the standard approach, which can run independently.&lt;/p&gt; 
 &lt;p&gt;&lt;span style="border: none; display: inline-block; overflow: hidden; width: 778px; height: 427px"&gt;&lt;img style="margin-left: 0px; margin-top: 0px" src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/6bTDt8ZW_-QTAGjOfgwoyikDh0zQ-FO3WIXB3nuCHforcJtThzw5jnASUwAMCyCKPZznxivq8BVE6_yhYW2TNtOl_aT_bOjBWTDJrSLx4RCbR-_sBf5jKbbSLRFoDEbpy6dutYx8ZqLjC0-HqpiiI.png?width=778&amp;amp;height=427&amp;amp;name=6bTDt8ZW_-QTAGjOfgwoyikDh0zQ-FO3WIXB3nuCHforcJtThzw5jnASUwAMCyCKPZznxivq8BVE6_yhYW2TNtOl_aT_bOjBWTDJrSLx4RCbR-_sBf5jKbbSLRFoDEbpy6dutYx8ZqLjC0-HqpiiI.png" alt="" width="778" height="427"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Node-locked license support:&lt;/strong&gt; Beginning with the 2023.10 release, license enforcement is now enabled. This feature enables node-locked licenses to be enforced at the hostID level and allows for multiple hostIDs in a single license. For more information regarding node-locked versus unlocked licenses, please refer to the End User License Agreement available at &lt;a href="https://gamedriver.io/download?"&gt;gamedriver.io/download&lt;/a&gt;.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Misc Bug fixes and updates&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;REPL Tool color feedback&lt;/li&gt; 
  &lt;li&gt;Tap and Touch input fixes&lt;/li&gt; 
  &lt;li&gt;VR and Recorder fixes&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;h2&gt;Unity&lt;/h2&gt; 
 &lt;p&gt;At GameDriver we strive to support the latest technologies, target platforms, and popular plugins that are common in the community. This release continues that tradition with support for the latest from Unity.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Unity 2023.x support:&lt;/strong&gt; In anticipation of the release of &lt;a href="https://forum.unity.com/threads/introducing-unity-6-the-next-major-release-of-unity.1517209/"&gt;Unity 6&lt;/a&gt;, aka 2023.4.x (LTS), we have certified support for the latest version of Unity 2023.x in GameDriver, so that teams can upgrade seamlessly and leverage their test automation assets in the process.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;ECS/DOTS support:&lt;/strong&gt; Unity’s &lt;a href="https://unity.com/ecs"&gt;Entity Component System&lt;/a&gt;, or ECS, enables creators to work with a much greater number of objects in a scene without having to manage each of them individually, allowing for very large and complex scenes. This release provides support for ECS components using the HierarchyPath query language, allowing test engineers to work with ECS components at scale.&lt;/p&gt; 
 &lt;p&gt;&lt;span style="border: none; display: inline-block; overflow: hidden; width: 730px; height: 412px"&gt;&lt;img style="margin-left: 0px; margin-top: 0px" src="https://www2.gamedriver.io/hs-fs/hubfs/Imported_Blog_Media/psYlf4fxqXXDV5vojfBBprf6fE-TFend6mpg8NsrVm-I-G7l8ITogJr2mMKsc1WII0VSIkKhn-Mdqfzlc3ES9ymVNvsCMSo4wxUU34SlaFpgFqumVskMQbfmuvyHKhrHhqDr6OfuGgmIl0QrCdjbQ.jpg?width=730&amp;amp;height=412&amp;amp;name=psYlf4fxqXXDV5vojfBBprf6fE-TFend6mpg8NsrVm-I-G7l8ITogJr2mMKsc1WII0VSIkKhn-Mdqfzlc3ES9ymVNvsCMSo4wxUU34SlaFpgFqumVskMQbfmuvyHKhrHhqDr6OfuGgmIl0QrCdjbQ.jpg" alt="" width="730" height="412"&gt;&lt;/span&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;a href="https://unity.com/demos/megacity-competitive-action-sample"&gt;Unity Megacity Demo built on DOTS&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Rewired input system support:&lt;/strong&gt; In addition to the input managers provided by Unity (Legacy, Input System, and OpenXR), Meta (OVR), and Microsoft (MRTK2), GameDriver now supports the popular &lt;a href="https://guavaman.com/projects/rewired/"&gt;Rewired&lt;/a&gt; input system. This allows you to automate testing using the myriad of devices supported by Rewired, and ensure consistent quality and behavior without the need for complex and time-consuming manual tests.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;OVR Gestures support:&lt;/strong&gt; Following on from our previous release which extended our XR support to include Meta’s OVR input package, this release includes support for OVR Gestures. OVR Gestures can be used to simulate human hand gestures that your application supports, without the need to wear the physical headset.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Node-locked license support:&lt;/strong&gt; Beginning with the 2023.10 release, license enforcement is now enabled. This feature enables node-locked licenses to be enforced at the hostID level and allows for multiple hostIDs in a single license. For more information regarding node-locked versus unlocked licenses, please refer to the End User License Agreement available at &lt;a href="https://gamedriver.io/download?"&gt;gamedriver.io/download&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Agent configuration updates&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;Add Agent option added under the GameDriver menu&lt;/li&gt; 
  &lt;li&gt;Change font type. This requires the user to include a .TTF file in the resources folder.&lt;/li&gt; 
  &lt;li&gt;Change font size and color.&lt;/li&gt; 
  &lt;li&gt;Change background-size, color, and opacity.&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;&lt;strong&gt;Added support for debugging SmartAgents&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Misc Bug fixes&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;SmartAgent support for getting primitive type properties&lt;/li&gt; 
  &lt;li&gt;TouchInput/Tap fixes&lt;/li&gt; 
  &lt;li&gt;Input fixes (center click, caps lock, drag selection)&lt;/li&gt; 
  &lt;li&gt;Config localization Fix&lt;/li&gt; 
  &lt;li&gt;Fixed a crashing issue when Domain Reload was disabled&lt;/li&gt; 
  &lt;li&gt;Fixed an issue where trace logging wasn't reflected in the GameDriver menu&lt;/li&gt; 
  &lt;li&gt;Fixed a potential memory leak in the HierarchyPath debugger&lt;/li&gt; 
  &lt;li&gt;Added support for high code stripping in IL2CPP*&lt;/li&gt; 
  &lt;li&gt;Fixed issue with GetObjectDistance reliability&lt;/li&gt; 
  &lt;li&gt;Miscellaneous API doc fixes&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;&lt;strong&gt;Apple Vision Pro support (Beta)&lt;/strong&gt;&lt;/p&gt; 
 &lt;p&gt;This release includes support for the Apple Vision Pro build target in Unity 2022 and 2023.&lt;/p&gt; 
 &lt;p&gt;&lt;strong&gt;Known issues:&lt;/strong&gt;&lt;/p&gt; 
 &lt;ul&gt; 
  &lt;li&gt;iOS may crash if enhanced logging is enabled. This release includes a fix to minimize this behavior, but this is a known issue within Unity.&lt;/li&gt; 
 &lt;/ul&gt; 
 &lt;p&gt;The 2024.03 release for Unity maintains support for Unity 2019 (LTS) through the upcoming 2023 (LTS) and Unreal Engine 4.72 to 5.3, including all of the features and fixes listed above.&lt;/p&gt; 
 &lt;p&gt;For more information on how to leverage the latest capabilities of GameDriver to streamline your development efforts, &lt;a href="https://gamedriver.io/schedule-meeting/?"&gt;book a meeting&lt;/a&gt; with us today.&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2024%2Fmarch%2Fgamedriver-202403-for-unity-and-unreal-engine-is-now-available&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>Releases</category>
      <pubDate>Tue, 12 May 2026 15:43:20 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2024/march/gamedriver-202403-for-unity-and-unreal-engine-is-now-available</guid>
      <dc:date>2026-05-12T15:43:20Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
    <item>
      <title>InContext Reduces Manual Testing by 85% using GameDriver | GameDriver</title>
      <link>https://www2.gamedriver.io/blog/blog/2019/august/incontext-reduces-manual-testing-by-85-using-gamedriver</link>
      <description>&lt;div class="text base-text "&gt; 
 &lt;p&gt;&lt;a href="https://www.incontextsolutions.com/"&gt;&lt;span class="color_2"&gt;InContext Solutions&lt;/span&gt;&lt;/a&gt;, the global leader in 3D simulation software, uses GameDriver to deliver quality assurance for their Virtual Reality-based retail and merchandising optimization platform,&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://www.incontextsolutions.com/shoppermx/"&gt;&lt;span class="color_2"&gt;ShopperMX&lt;/span&gt;&lt;/a&gt;. Together, GameDriver is helping InContext Solutions deliver daily updates to their 3D platforms, with more confidence via an automated QA process. This allows InContext to drive value into their customers' hands 5x faster than before.&lt;/p&gt; 
 &lt;p&gt;&lt;a href="https://www.incontextsolutions.com/"&gt;&lt;img src="https://www2.gamedriver.io/hubfs/Imported_Blog_Media/logo-incontext-solutions.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;Learn more about what GameDriver can do to improve your time to value, lower costs and increase the quality of your products,&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="#" title="Download"&gt;&lt;span class="color_2"&gt;contact us today!&lt;/span&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt;</description>
      <content:encoded>&lt;div class="text base-text "&gt; 
 &lt;p&gt;&lt;a href="https://www.incontextsolutions.com/"&gt;&lt;span class="color_2"&gt;InContext Solutions&lt;/span&gt;&lt;/a&gt;, the global leader in 3D simulation software, uses GameDriver to deliver quality assurance for their Virtual Reality-based retail and merchandising optimization platform,&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://www.incontextsolutions.com/shoppermx/"&gt;&lt;span class="color_2"&gt;ShopperMX&lt;/span&gt;&lt;/a&gt;. Together, GameDriver is helping InContext Solutions deliver daily updates to their 3D platforms, with more confidence via an automated QA process. This allows InContext to drive value into their customers' hands 5x faster than before.&lt;/p&gt; 
 &lt;p&gt;&lt;a href="https://www.incontextsolutions.com/"&gt;&lt;img src="https://www2.gamedriver.io/hubfs/Imported_Blog_Media/logo-incontext-solutions.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt; 
 &lt;p&gt;Learn more about what GameDriver can do to improve your time to value, lower costs and increase the quality of your products,&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="#" title="Download"&gt;&lt;span class="color_2"&gt;contact us today!&lt;/span&gt;&lt;/a&gt;&lt;/p&gt; 
&lt;/div&gt;  
&lt;img src="https://track.hubspot.com/__ptq.gif?a=4686969&amp;amp;k=14&amp;amp;r=https%3A%2F%2Fwww2.gamedriver.io%2Fblog%2Fblog%2F2019%2Faugust%2Fincontext-reduces-manual-testing-by-85-using-gamedriver&amp;amp;bu=https%253A%252F%252Fwww2.gamedriver.io%252Fblog&amp;amp;bvt=rss" alt="" width="1" height="1" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important; "&gt;</content:encoded>
      <category>Posts</category>
      <pubDate>Tue, 12 May 2026 15:43:19 GMT</pubDate>
      <guid>https://www2.gamedriver.io/blog/blog/2019/august/incontext-reduces-manual-testing-by-85-using-gamedriver</guid>
      <dc:date>2026-05-12T15:43:19Z</dc:date>
      <dc:creator>GameDriver</dc:creator>
    </item>
  </channel>
</rss>
