Automate Your WebGL Application in 7 Easy Steps

Automate Your WebGL Application in 7 Easy Steps
Ron van Cann
October 10, 2023
Share
linkedin iconmail icon

Automate Your WebGL Application in 7 Easy Steps

Embrace Immersive and Interactive User Experiences: A Guide to Automating WebGL Websites with AskUI

As web developers increasingly seek to captivate users with immersive experiences, WebGL-based websites have gained popularity. By harnessing the power of canvas to draw graphics and animations directly, they offer unparalleled creative control and dynamism in crafting user interfaces. The result? A more flexible and engaging platform for stunning graphical compositions, delivering real-time interactions that captivate visitors.

Yet, automating WebGL-based websites poses a unique challenge, as they often lack the conventional DOM elements that traditional selector-based test frameworks depend on

This is the result of the Automation Example:

Overview of WebGL and Google Maps

WebGL

WebGL-based websites are revolutionizing the digital landscape, helping web developers with their ability to craft captivating and interactive user experiences. By harnessing the power of WebGL, developers gain unprecedented creative control, enabling them to create visually stunning graphics and animations directly on the canvas. This cutting-edge technology provides a dynamic and flexible platform, elevating graphical compositions to new heights and offering users a truly immersive experience. However, automating WebGL-based websites has posed unique challenges due to the absence of traditional DOM elements that conventional test frameworks rely on.

In this tutorial, we delve into the world of WebGL automation, showcasing how to utilize AskUI to seamlessly automate a WebGL-based website. By leveraging AskUI’s reliance on visible screen elements, you will discover the ease with which canvas-based websites can be automated without the need for any DOM element dependency. Empower yourself to unlock the full potential of WebGL and enhance user experiences like never before proving its stability and usability with AskUI.

Google Maps

Google Maps is a powerful and widely-used web mapping service provided by Google. It allows users to explore interactive maps, satellite imagery, and street views of locations all around the world. Whether you're searching for directions, locating nearby businesses, or planning a trip, Google Maps offers an extensive array of features to assist you.

The platform's intuitive interface allows users to zoom in and out, tilt, and rotate maps effortlessly, providing a seamless navigation experience. With Google Maps, users can access real-time traffic updates, and public transportation information, and even view 360-degree street panoramas for a comprehensive understanding of their surroundings.

One of the standout features of Google Maps is its integration with WebGL technology, enabling the display of three-dimensional buildings and terrain, offering users a visually rich and immersive experience. Whether on desktop or mobile devices, Google Maps ensures that users can access vital geographic information anytime, anywhere.

Now let's continue with the Automation example

In this automation scenario, we will demonstrate the power of automating a WebGL-based application using AskUI in the context of Google Maps. By showcasing how automation streamlines the process of exploring routes and navigating through the 3D terrain of Google Maps, we'll highlight the enhanced user experience and time-saving benefits that come with automation.

These are the Steps we are going through:

  1. Open a new tab using a Keyboard Shortcut (CMND + T) and Open Google Maps
  2. Scroll out of the Map, to get an entire World view
  3. Pull the Map upwards, so we can start seeing Portugal, where Lisbon is located
  4. Identifying Portugal, and Clicking to zoom in further
  5. Identifying Lisbon on the Screen and Zooming into it
  6. Move the Mouse to the Live view Character, and Put it on Lisbon
  7. Turning around in the Live view

1. Open a new tab using a Keyboard Shortcut (CMND + T) and Open Google Maps

-- CODE language-ts line-numbers -- it('Google Maps WebGL Automation', async () => { // Open your preferred Browser // macOS await aui.pressTwoKeys('command', 'space').exec(); await aui.type('chrome').exec() await aui.pressKey('enter').exec() // Once the Browser is opened, open a new Tab and Google Maps await aui.pressTwoKeys("command", "t").exec() await aui.type("https://www.google.com/maps").exec() await aui.pressKey("enter").exec() await aui.waitFor(1000).exec()
Opening a New Tab in my Browser here and searching for Google Maps

2. Scroll out of the Map, to get an entire World view

-- CODE language-ts line-numbers -- // using aui.scroll(x, y).exec() await aui.moveMouse(1500, 1102).exec() await aui.scroll(0, -5000).exec() await aui.waitFor(1000).exec()
Zooming out of the Map here, in theory you could find out where I live

3. Pull the Map upwards, so we can start seeing Portugal, where Lisbon is located

-- CODE language-ts line-numbers -- //Reframing the View of the Worldview await aui.mouseToggleDown().exec() await aui.waitFor(1000).exec() await aui.moveMouseRelatively(0, -200).exec() await aui.waitFor(1000).exec() await aui.mouseToggleUp().exec()
Pulling the Map up, to put the view field more into the center of the world

4. Identifying Portugal, and Clicking to zoom in further

-- CODE language-ts line-numbers -- // Moving the Mouse text "Portugal" which is identified through our ML Models await aui.moveMouseTo().text("Portugal").exec() await aui.waitFor(1000).exec() await aui.scroll(0, 1200).exec() await aui.waitFor(1000).exec() await aui.mouseLeftClick().exec()
Moving the Mouse to Portugal and Click it to Zoom in to it

Identifying Lisbon on the Screen and Zooming into it

-- CODE language-ts line-numbers -- // Simulating a Click on Lisbon, which was also identified through our ML Models await aui.click().text("Lisbon").exec() await aui.waitFor(1000).exec()
Identifying Lisbon and Zooming into this beautiful place

Move the Mouse to the Live view Character, and Put it on Lisbon

-- CODE language-ts line-numbers -- // Using a Coordinate to click on the 3D View Mannequin await aui.moveMouse(2952, 1714).exec() await aui.mouseToggleDown().exec() await aui.waitFor(1000).exec() await aui.moveMouse(2260, 976).exec() await aui.waitFor(1000).exec() await aui.mouseToggleUp().exec() await aui.waitFor(1000).exec()
Moving the Mouse to the 3D mannequin to drop him over Lisbon to open the 3D View

Turning around in the Live view

-- CODE language-ts line-numbers -- await aui.moveMouse(1500, 1102).exec() await aui.mouseToggleDown().exec() await aui.moveMouseRelatively(1500, 0).exec() await aui.waitFor(1000).exec() await aui.mouseToggleUp().exec() });
Pulling the View to the left to see what is going on

Conclusion

This article showcases how AskUI streamlines the automation of WebGL-based websites, emphasizing efficiency in testing and validating user experience in WebGL applications. Instead of relying on selectors or tags, AskUI solely operates based on visible selectors that work on the underlying structure. This enables seamless interaction with canvas-based websites, overcoming typical challenges like clicking on non-DOM text elements, navigating toward bitmap text, and scrolling on specific bitmap text. With AskUI, even complex canvas-based user interfaces can be automated with ease, ensuring a smooth and effective automation process for your WebGL application testing and validation.

Get in touch

For media queries, drop us a message at info@askui.com