Category: Software Testing
Enable Beta Testing of Custom Alexa Skill
Enable Beta Testing of Custom Alexa Skill Amazon provides us a feature to test our custom skill before publishing it to production. By enabling the beta testing, we can test the skill on amazon devices and apps. Amazon facilitate us
Headless Browser Introduction and Examples
Headless Browser Testing With Selenium Webdriver Headless is a browser which does not have a GUI. A headless browser runs a testing script even though when there is no browser installed on our system such as we need the latest
Introduction to ChromeDriver for Selenium with Example
Introduction to ChromeDriver for Selenium with a Code example to test a Website page title Chrome driver is used to perform the automation testing in chrome browser. Selenium requires this driver to run your test cases in chrome browser. You
Selenium Webdriver with JavaScript (JavaScriptExecutor)
How to Use Selenium Webdriver with JavaScript? Selenium is an open source automation testing tool. It is used to test the web application. Selenium supports multiple languages to create an automation script such as Java, Python, PHP, C#, Ruby. In
Introduction to Selenium and some Examples
Introduction to Selenium and some Examples History of Selenium Selenium was launched in 2004 by Jason Huggins (engineer at ThoughtWorks in Chicago) and he named it “Javascript TestRunner” but at that time it was stuck with the “same origin policy”
Steps to configure Selenium webdriver in Eclipse
Before we download and install selenium webdriver and eclipse, we need java which is prerequisite that must be installed in our system. Following activities need to be performed during configuration: 1. Steps for configuration of eclipse IDE: 1.1. Go to
Why to use xpath in Selenium
What is Xpath? Xpath is defined as XML path. If we are unable to find an element with id, class or name locator on web page then we can use XML path expression for finding the element on a webpage.
Take screenshots and name file using timestamp in Selenium
When we test a website and face bugs we need screenshot of the output to suggest to the developer to fix the issue. Automated testing is usually evidenced by Screenshots and logs. But how to save screenshots with timestamp in
Importance of testing in production after deployment
When we deploy an application from staging / testing server to live / production environment, tester needs to test the application again in production environment no matter if he has already tested the whole application in staging environment. Why there