• Skip to main content
Super Early Bird - Save 30% | Teams save up to 25%

AutomationSTAR

Test Automation Conference Europe

  • Programme
    • AutomationSTAR Team
    • 2025 programme
  • Attend
    • Why Attend
    • Volunteer
    • Location
    • Get approval
    • Bring your Team
    • 2025 Gallery
    • Testimonials
    • Community Hub
  • Exhibit
    • Partner Opportunities
    • Download EXPO Brochure
  • About Us
    • FAQ
    • Blog
    • Test Automation Patterns Wiki
    • Code of Conduct
    • Contact Us
  • Tickets

2025

Aug 27 2025

EU Regulations: The Example of the European Accessibility Act

Starting in mid-2025, the legal obligation to verify the accessibility of websites in the EU will extend to the private sector. This affects companies from various industries such as e-commerce, banking, and insurance, which must ensure their digital offerings are accessible. The public sector in Germany, for instance, was already required to test both internal and external websites for accessibility and ensure they comply with the standards of the Barrierefreie-Informationstechnik-Verordnung (BITV), based on the Web Content Accessibility Guidelines (WCAG). This is just one of many upcoming EU regulations, including product liability directives and the AI Act.

With this extension, it is expected that there will be waves of legal warnings and fines similar to those after the introduction of GDPR. This increases the pressure on service providers and operators of digital offerings to review and adapt their websites according to legal requirements.

However, current technology only allows a small portion of WCAG requirements to be tested automatically. Many aspects of accessibility still need to be manually tested and results from automations have to be reviewed by a human tester, making the process more time- consuming and resource intensive. The Accessibility Conformance Testing (ACT) working group of the W3C is developing conformity rules that include both manual and partially automated testing methods to enable a more comprehensive assessment of WCAG compliance. About 30% of the success criteria of WCAG 2.2 are considered automatable in a classical way. With the use of AI, better coverage is possible here. webmate can provide automation for up to 60% of the success criteria.

Shift Left for Accessibility

Accessibility is a crucial aspect of software development that has often been neglected. To effectively address and prevent accessibility issues, they should be integrated early into the testing routine. One way to do this is by using tools like webmate, which already can provide valuable insights during the development phase and shine in quality assurance and documentation processes.

The upcoming legal changes and technological developments make it clear that companies must take proactive measures to meet accessibility requirements and avoid legal risks. By automating tests in pipelines and CI/CD processes, continuous accessibility testing can be ensured without the need for additional manual testing efforts. The “Shift Left” approach in testing means that developers should consider accessibility from the initial implementation of a feature, rather than waiting until the end of the development process.

Manual testing can also capture aspects of accessibility that automated tools might overlook. However, manual testing alone is not sufficient to guarantee comprehensive accessibility. A combination of automated tests and manual feedback is necessary to obtain a complete picture of accessibility issues and ensure that all user groups can equally benefit from the software.

The Need for Auditing

Regular audits ensure the traceability and documentation of accessibility measures. This is particularly important for compliance with national and international standards. Audits enable systematic reviews of existing processes and ensure that all aspects of accessibility are continuously maintained and improved. This way, the Accessibility Enhancement Act can be easily fulfilled.

Audits should be considered a complementary part of regular testing processes. While tests help identify problems early, audits provide a comprehensive assessment and documentation of the overall accessibility situation. The audit results also serve as excellent proof. This can create a well-rounded and effective accessibility management system that meets both legal requirements and the needs of all users.

Due to the lengthy and time-consuming process, it is often difficult to meet all components and regulations. With the help of specialized tools, audits can be repeatedly conducted, and compliance is achieved. In my opinion, only those who embrace the EU regulations can act in a future-relevant manner.

Testfabrik: Driving Quality, Reducing Risk, Accelerating Delivery.

In today’s high-stakes digital landscape, leading enterprises trust webmate to deliver end- to-end testing solutions that align with business goals. From compliance to performance, we help de-risk deployments, streamline operations, and future proof for upcoming requirements. Without slowing down innovation.

Author

Tim Böhm

Tim Böhm is a tech enthusiast and passionate teacher. During and after his computer science studies, he worked at Testfabrik Consulting + Solutions AG in both product development and marketing. Since 2024, he has been leading the sales and marketing department for webmate and regularly appears as an instructor in training sessions and as a speaker at webinars and events.

Testfabrik were exhibitors at AutomationSTAR Conference EXPO 2025. Join us in Antwerp 4-5th November 2026.

· Categorized: AutomationSTAR · Tagged: 2025, exhibitor

Aug 25 2025

Allure Start: tech stack as a service

The diversity of modern testing and development tools forces us to experiment a lot with the tech stack.

Suppose our team created a JavaScript project with tests, and then developers decided to switch to Python. Now, testers are presented with a choice: continue writing E2E tests in Playwright-JS, or switch to Pytest + Playwright.

Taking the time to properly analyze a decision is never easy, because it means you have to stop working. The more tests you have, the more difficult and time-consuming the analysis becomes.

What is the comparative performance of your test suite with different frameworks? How difficult will it be to implement screenshot highlighting with our new stack? Each comparison means you need to spend at least several hours on environment setup. At best, you lose a lot of time, at worst, you delay decisions and accrue technical debt.

This is an issue that the Allure team has been facing a lot, since creating a language-agnostic reporter meant working with lots of different tech stacks. To simplify environment setup, the team wrote Allure Start, an open-source tool that allows you to customize a tech stack with a few mouse clicks and then download a fully configured project environment.

To get a feel for how much time this saves, let’s go through the steps of setting up an environment for a project with Pytest and Playwright (say, for experimenting with screenshots for automated tests). First, we’ll take the usual route, and then see how Allure Start changes the process.

The usual route

We assume that Python is already installed on the system, Allure Report is available, and an IDE is configured (let’s say, Cursor). It’s probably a good idea to make sure everything is working (run `python -–version’, ‘pip –version’, and ‘allure –version’ in the terminal).

Next, we follow these steps:

  • We create a new project in Cursor, add a test folder for tests, and a pyproject.toml file for metadata.
  • Create a local Python virtual environment, so that we don’t pollute the common Python with our project’s dependencies: `python -m venv .venv`.
  • Activate the environment: `. ./.venv/bin/activate` (Windows/Linux) or `./.venv/Scripts/Activate.ps1` (Windows).
  • Update pip dependencies: `python -m pip install –upgrade pip setuptools wheel`.
  • Use pip to install dependencies: ‘pip install pytest pytest-playwright allure-pytest allure-python-commons’. This will create a requirements.txt file that lists all dependencies; once it’s created, installing dependencies can be done via `pip install -r ./requirements.txt`.
  • Playwright is going to need browsers to work: `playwright install`.
  • It’s a good idea to freeze pip dependencies, so that future updates of Pytest or Playwright do not break our code: `pip freeze ./requirements.txt`

If everything has been hooked up properly, we can finally start writing our tests, and run them with the `pytest` command:

The usual route: switching package managers

As our experiment evolves, we might decide to switch to a different package manager — in more serious projects, poetry is usually used instead of pip. Installing and configuring poetry can take a while as well. For instance, do you remember off-hand how to configure it to use an in-project virtual environment? ChatGPT (or Cursor) does speed up this process, but it still takes a while. Keep in mind that what we’ve just described is the best case scenario, with no time spent on debugging — which is a very optimistic assumption.

The same with Allure Start

The entire process from the previous section is replaced by literally a few mouse clicks. We go to https://allurereport.org/start/, and select Python -> Pytest.

Next, we specify project metadata and download an archive that can be immediately opened in your favorite IDE. Playwright will need to be added separately, but everything else is ready. Importantly, the environment is stable and debugged.

Note that the project you’ve just downloaded contains some elements that are absent in the manual project we’ve set up above:

  1. An src folder with a placeholder for our system under test.
  2. Two scripts: run.bat for Windows and run.sh for Linux/Mac. These pretty much repeat all the steps we’ve done manually (creating a virtual environment, updating the package manager, etc.)

Now, for the second case we’ve discussed above: switching from pip to poetry. Allure Start allows us to change the package manager with literally one click:

Now download a new project, and if the old project already has some code, copy it. That’s it.

Use cases

Allure Start saves time on virtually every project, but some use cases stand out in particular.

1.Experimentation and decision-making.

That’s an obvious one, we’ve discussed it at the start. If you want to compare different frameworks, each comparison means an extra few hours setting up the environment; Allure Start cuts that time down drastically.

2. Tech Support

When someone comes to you complaining that in their setup, Jest version something.something glitches out, you need to replicate their stack if you want to reproduce their problem. Even if you’ve already worked under that exact setup, it will take you a few hours to refresh all the dependencies and ensure everything works properly.

3. Onboarding and education.

Switching to a new tech stack becomes a much easier affair if the environment is stable and debugged. This is important both for new hires, for teams that want to switch instruments, and for people new to the industry. Having just learned how to write selectors, you might be eager to get some testing done. But then it turns out you need to spend several frustrating days setting up the IDE and all the dependencies. Not fun.

Conclusion

The modern testing tech stack is incredibly variable, and you can find all kinds of permutations out there. That limits the number of people in the community who have worked on a particular permutation, makes problem-solving more difficult, and complicates experimenting with new tools.

Allure Start helps you try out different combinations of tools error-free and quickly, with just a few clicks. That means:

  • Less time spent on decisions to adopt or upgrade technologies
  • Way quicker diagnosing of technical problems on uncommon tech stacks
  • Lower barrier of entry for people who are just beginning to learn test automation

Try it and tell us what you think!

Author

Dmitry Baev

Author of Allure Framework & CTO of Qameta Software

Allure Report were exhibitors at AutomationSTAR Conference EXPO 2025. Join us in Antwerp 4-5th November 2026.

· Categorized: AutomationSTAR · Tagged: 2025, event sponsors

Aug 20 2025

Discover Key Insights with The World Quality Report 2024-25

The latest World Quality Report is here, and it continues to be the go-to source for organizations seeking to stay informed in quality engineering and software testing. It offers valuable insights into the latest trends and developments and testing practices. As digital transformation accelerates across industries, this year’s edition presents critical findings on how businesses are adapting their quality strategies to meet new challenges, especially in an era dominated by emerging technologies like generative AI (Gen AI).

A significant aspect of this year’s edition is the exploration of how Gen AI is being leveraged to revolutionize QA and testing. As organizations increasingly adopt AI-powered tools to automate testing processes and generate predictive insights, the report examines how these technologies are improving efficiency, coverage, and accuracy in testing environments. Readers can learn about the ways AI is helping companies reduce manual intervention, accelerate release cycles, and ensure higher-quality software. The report also addresses the challenges of implementing AI-driven testing, providing guidance on how to overcome barriers to adoption.

68% of organizations report investing in AI solutions, and the technology has become a critical component of the quality transformation agenda. Gen AI is introducing unprecedented efficiencies in software testing and quality assurance (QA), helping organizations streamline operations, reduce manual intervention, and improve the accuracy and coverage of testing. The ability of Gen AI to create test cases and extract test data poses to significantly reduce the workload of quality engineers and testers.

In addition to overall trends, the World Quality Report delves into sector-specific insights and provides a detailed analysis for individual industries such as automotive, retail, energy, financial services, healthcare, manufacturing, and telecommunications. Industry leaders can how their peers are navigating unique challenges within their sectors. For instance, the report highlights how the banking industry is focusing on security and compliance in QA, while the retail sector is prioritizing the customer experience in its testing efforts. By offering a granular view of quality engineering in different industries, the report provides tailored recommendations for businesses to enhance their testing capabilities.

Whether you are a quality engineer, manual tester, business analyst, or CIO, the World Quality Report 2024-2025 is an essential resource for understanding the latest innovations in quality assurance and testing. You will see both high-level trends and industry-specific insights, the report equips readers with the knowledge on quality strategies, emerging best practices, and how to navigate the complexities of current software development. Explore The World Quality Report soon and discover how you can drive your organization’s quality transformation agenda forward.

Author

Olivier Félis

Olivier is a seasoned software testing and quality assurance professional with over 20 years of experience. Currently, he is a Senior Solutions Consultant and Practice Lead for the ALM solution at OpenText. Olivier has a strong background in managing complex test environments and driving innovation in testing methodologies within an integration company. He has led numerous large-scale projects in various industries including pharmaceutical, finance, and hospitality. For the past 3 years, Olivier has been involved in exploring new technologies and innovation to improve and facilitate software reliability and performance

Opentext were exhibitors at AutomationSTAR Conference EXPO 2025. Join us in Antwerp 4-5th November 2026.

· Categorized: AutomationSTAR · Tagged: 2025, EXPO

  • « Go to Previous Page
  • Page 1
  • Page 2

Copyright © 2026 · Impressum · Privacy · T&C

part of the