Playwright and Mojolicious

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • Playwright

    Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.

  • My project this time was to see if there's a better way for us to do automated browser testing of our Mojolicious web applications. For a long time Selenium has been the de facto standard for browser automation, but these days there are more modern alternatives available, such as Playwright. But how good is Playwright really? Spoiler: It's very good. But keep reading to find out why and at what cost.

  • mojo-playwright

    Sample application

  • And if you've made it this far i've got something special for you, i've prepared a repo on Github with a WebSocket chat application and mixed JavaScript/Perl tests you can use for experiments. It also has a solution for how to set up test fixtures with wrapper scripts. Have fun!

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • node

    Node.js JavaScript runtime ✨🐢🚀✨

  • The code is being developed by Microsoft as an Open Source project with Apache-2.0 license and distributed as an NPM package. So all you need is Node, and you can install it with a one-liner.

  • mojo

    :sparkles: Mojolicious - Perl real-time web framework (by mojolicious)

  • const assert = require('assert'); const { chromium } = require('playwright'); (async () => { const browser = await chromium.launch({ headless: false, slowMo: 50 }); const context = await browser.newContext(); const page = await context.newPage(); await page.goto('https://mojolicious.org/'); await page.click('text=Documentation'); await page.click('text=Tutorial'); assert.equal(page.url(), 'https://docs.mojolicious.org/Mojolicious/Guides/Tutorial'); await page.screenshot({ path: 'tutorial.png' }); await context.close(); await browser.close(); })();

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Google Search Parameters (2024 Guide)

    2 projects | dev.to | 22 Apr 2024
  • How to Create LCEL Chains in LangChain

    2 projects | dev.to | 21 Mar 2024
  • Scalable REST APIs with NestJS: A Testing-Driven Approach

    3 projects | dev.to | 7 Mar 2024
  • How to Automate Processes with CrewAI

    3 projects | dev.to | 13 Jan 2024
  • Painless CLI integration testing

    7 projects | dev.to | 10 Jan 2024