Skip to main content

Basics of UX and UI


basics of UX and UI
UX refers to the term User Experience while UI stands for User Interface. But despite their vicinity, there are lot more to their execution process and design discipline.

UX design relates to the overall user interaction and experience with an application or a website. It is well known that great user experience results in return customers and great app usage. Hence the more importance. Typically, the UX Design process include research, design, prototyping, testing and measurement. Lot of factors influence UX process such as usability, utility, accessibility, design/aesthetics, performance, ergonomics, overall human interaction and marketing.

On the other hand, User Interface (UI) is more about visual design and information design around screens. Though a lot of process go into this graphical element, UI as the name implies, about the things the user will actually see and interact. It delivers tangible results and focuses on how an app or product surface look and functions.
Detailly discussed here  https://goo.gl/xQUJn7


Comments

Popular posts from this blog

Future Focus Infotech Digital Business & Transformation | Introduction

About Us Future Focus Infotech Pvt. Ltd. (FFI) – an established IT solutions provider for 20 years – offers innovative software services . Resources define the competency of an IT services organization and we have proven track record of operating a successful offshore/onshore model. The US office (Focus America Inc) was established in 2000 and the UAE (Future Focus Infotech FZE) in 2011. Our large pool of resources include 3,500+ skilled/trained employees in IT Solutions and Infrastructure Management – who are available offshore in India, US, and UAE with a “ready-to-serve” attitude. With such a diverse presence, we are successfully expanding into other markets proving ourselves as a global professional services firm. A unique combination of our quality processes, information security standards and ISO certifications brings us repeat business for high-class projects from our Tier 1 clients. Being ISO 9001 certified since 2005, our approach is always quality led. Our Qualit...

Implementing md-autocomplete with AngularJs

AngularJS  is a JavaScript-based open-source front-end web application framework that is incredibly popular among developers as it provides  an excellent  toolset  to build an application most dynamically with rich interactive features and functionalities  for a real-time experience. Mostly used in  Single Page Application (SPA) projects,  AngularJS models are JavaScript objects which makes it easy to code, test, maintain reuse, and most importantly free. When it comes in one of its input   component called “md-autocomplete” these are the points to consider while implementing it during development.   It displays a dropdown of all possible matching content to user’s query. User will be able to pick required content from the drop-down that would have all the potential matches based on the search characters entered by him/her. md-autocomplete is different from browser’s autofill feature. It allows user to key-in any value bu...

Identify Web Elements using Selenium Xpath Locator

As we all know, Web elements are present diversely (Dropdown, Check Box, Text Box, Radio Button, etc.) in a Web page. And locators are our saviours, right from helping us identify a Web element uniquely within the page to enunciate its HTML properties and informing Selenium about the action to be performed. For example, the Dropdown mandatory field “Highest Qualification” is not with Select Class in the Web page. It is difficult to find the Web element for that field. To resolve this, one may use Xpath Locator and find the element for the “Highest Qualification” field. Also they should try to select the Dropdown field value “Masters” making use of the Action Class. You can find the script but in that, using the Action Class to find the element for the mandatory “Highest Qualification” field will not be fruitful. You may have to apply the Contains text method to find out the element for the Xpath. Identifying Web elements is always a sensitive area and mandates a pr...