UI

Make better decisions with Google Cloud Document AI

Reading Time: 3 minutes Nearly all business processes today begin, include or end with a document. Most companies are sitting on the document goldmine. Thinking of which some are PDFs, emails, customer feedback, patents, contracts, technical documents, sensitive documents, HR files and the list goes on. These documents are only going to grow with time. Making sense of each document is difficult since a lot of these documents are Continue Reading

Cypress – Dashboard features and Reporting.

Reading Time: 5 minutes Hi folks, In this blog, we will learn about the cypress dashboard specifically and will explore its features. On top of that, we learn how to generate a shareable HTML report for test in cypress. So, let’s get going. What is Cypress Dashboard? The Cypress Dashboard Service is an optional web-based companion to our cypress test runner. It basically, provides a timely, simple and powerful Continue Reading

A Comprehensive Guide to UI

Reading Time: 6 minutes UI (USER INTERFACE) UI or User Interface is the interface that is the access point where users interact with computers. It is also a way through which users can interact with a website or an application. UI design typically refers to graphical user interfaces but also includes others, such as voice-controlled ones, a keyboard, a mouse, and the appearance of a desktop. UI design considers Continue Reading

UI / UX Trends 2020

Reading Time: 7 minutes A successful application is the one that has a lasting impact on the user’s mind (UX) and creates an instant attraction to the user (UI) for getting glued. In the last article, we talked about what is UI / UX, how it got evolved and key differences between both. In this article, we are going to talk about UI / UX Trends in 2020. We Continue Reading

New features available in Angular 9

Reading Time: 4 minutes Angular is one of the most popular frameworks for making web applications. Angular community launched Angular 9 yesterday. The latest version is smaller, faster, easier to use, and has given some more powerful features which enhances our application. The major change with this release is that it switches the application to the Ivy compiler and run-time by default. This version also introduced various improved ways Continue Reading

UI / UX : An in-depth understanding

Reading Time: 5 minutes What is UI / UX? User Interface (UI) in a layman definition refers to the visual elements, like, screens, pages, buttons, icons, typography, etc. which enables the user to interact with a product or service. User Experience (UX) on the other hand deals with the interaction process of how the user interacts with the product or service. At the basic level, we can say that Continue Reading

Angular application with REST backend solution

Reading Time: 3 minutes We always need interaction between backend and frontend for creating a successful application, but it takes time to integrate backend with the frontend, while they both are working parallelly. So for those who need a fast development without waiting for the backend to create Rest backend with Mock data is a solution for this situation. We use JSON Server to make this possible and help Continue Reading

Handle the Kendo Grid Filter on your own way

Reading Time: < 1 minute In the kendo api, the kendo provides the Grid View to show the large data into a tabular form as grid. It collects meaningful data records and have filters on them to categorize data into various groups and choose which meets our requirement best. We can enable the filter by following code in while initializing the Kendo Grid ,   $(“#myGrid”).kendoGrid({ filterable: true, columns: [ Continue Reading

Getting started with ReactJS, Play 2.4.x, Scala, Anorm and WebJars

Reading Time: 2 minutes playing-reactjs This blog describes a basic example to render UI using React(A JavaScript library for building user interfaces) with Play 2.4.x, Scala, Anorm and WebJars. It also demonstrates the use of evolution in Play 2.4.x This is a classic CRUD application, backed by a JDBC database. It demonstrates: Handling asynchronous results, Handling time-outs Achieving, Futures to use more idiomatic error handling. Accessing a JDBC database, Continue Reading

Automated UI testing in a Play Scala Application using FluentLenium

Reading Time: 2 minutes In this blog I am going to demonstrate how to do Automated UI testing of a Play Scala application using FluentLenium. FluentLenium is a framework that helps to write Selenium tests. FluentLenium provides us a fluent interface to the Selenium Web Driver. FluentLenium allows us use the assertion framework we like, either jUnit assertions or Fest-assert. To start building testcases using FluentLenium follow the below steps: 1) Add following dependencies in build.sbt file. “org.seleniumhq.selenium” Continue Reading