Tools for Developers – 5 Helpful Links to Add to Your Resources List
To survive in the world of software development, it is vital to constantly stay up to date with the latest tools and technologies. Whether you’re developing web or mobile applications, the right tools can have a huge impact on the success of your projects and …
How to Use Web Fonts Cross Browser
In today’s world, internet users access websites through various devices and browsers. However, since each browser has a different engine and interpretation method, ensuring that websites function properly across different browsers and devices can be a challenging task for web developers. This is where cross-browser …
How to write Software Test Cases?
Software testing is an important stage in the software development lifecycle that ensures quality, functionality and reliability. Test cases are a critical component that defines how software will be tested under specific conditions and scenarios. In this blog post, you will find detailed information about …
How to create a Test Scenario?
Testing is a critical phase in the software development lifecycle that ensures the quality and reliability of an application. Creating test scenarios provides a systematic approach to verify whether the software under the test works as expected. In this blog, we will examine what test …
How To Structure Your Selenium Tests
In this post we will cover a few techniques you can use to make your Selenium tests easier to write and maintain. If you are not already familiar with the Selenium basics you might want to read our introduction guide and the basics about elements first. Test Example Below …
Selenium: Waiting and Validating
In this post we will cover 2 different techniques to make your Selenium tests more useful and robust. If you are not already familiar with the Selenium basics you might want to read our introduction guide and the basics about elements first. Waiting For Conditions Sooner or later you …
Selenium: Finding and Interacting with Elements
In this post we will cover a few more advanced topics in regards to finding and interacting with page elements using Selenium web browser automation. If you are not already familiar with the Selenium basics you might want to read our introduction guide first. Finding Elements Before …
Selenium Basics
In this post we will cover all the basics to get you started writing Selenium web automation tests. If you don’t already know what exactly Selenium is or how you can setup your Selenium environment please head over to the setup guide. Now that you are …
Running Selenium Tests Using Jenkins
In this post you will get a quick introduction on running Selenium tests as part of your continuous integration workflow using the famous Jenkins CI server. What is Jenkins? Jenkins is an open source continuous integration server which supports countless building and deployment scenarios through its hundredths …
How to Run Selenium Tests On Android And IOS
In todays post we will go over the process to setup and run Selenium tests for a mobile website or web application on Android and iOS. We will cover running tests on device emulators and on real mobile devices. You can perform all below steps …