Systems | Development | Analytics | API | Testing

Selenium 101 with Titus Fortner

In this session, Sauce Labs Senior Solutions Architect and Selenium project core contributor Titus Fortner provides an overview of what Selenium is and how it works. He then breaks down the seven components of all Selenium tests before diving into various ways to start sessions and locate elements. Finally, the session ends with a walkthrough of all the major functionality for working with elements and various browser components.

Getting Started with Sauce Labs

In this session, Sauce Labs Senior Solution Engineer Stan Williams provides a high-level view of the Sauce Labs UI and of automated tests running in parallel, including test artifacts (logs, images, videos) and broad organization usage metrics. Learn how Sauce Labs can help your company deliver a flawless customer experience in every interaction with your web and mobile apps.

How Yellowfin is working with Health iPASS to help medical practices survive

In this Webinar, Health iPASS, a leader in medical practice management software, discusses how they are using Yellowfin to provide business insights to medical practices. These insights allow clients to optimize their patient collections and hold their front desk teams accountable for collecting information and capturing card on file. In an era where medical practices are struggling because of COVID-19, Health iPASS has used Yellowfin to create a set of products to help these practices adapt their workflow and build for the future.

Better Python Decorators with Wrapt

Our instrumentation uses built-in extension mechanisms where possible, such as Django’s database instrumentation. But often libraries have no such mechanisms, so we resort to wrapping third party libraries’ functions with our own decorators. For example, we instrument jinja2 ’s Template.render() function with a decorator to measure template rendering time. We value the correctness of our instrumentation a lot so that we do not affect our users’ applications.