Debomita Bhattacharjee has Published 867 Articles

Explain Test Driven Development Framework.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:19:52

213 Views

Test Driven Development framework is the methodology implemented from a developer’s mindset. Here, a developer writes test cases covering each and every functionalities of the application with the intention of verifying if the code is proper.Once these test cases get failed, the developers’ refactor the code in order to make ... Read More

Explain Behavior Driven Framework.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:18:52

203 Views

Behavior driven framework takes the inputs from all the stakeholders in the project like the developers, testers, product owners, managers, customers and business analysts. The idea is to bring each of the members of the project in the same understanding.Behavior driven framework works on collaboration and coordination among everyone in ... Read More

State differences between Data Driven and Keyword Driven Framework.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:17:23

858 Views

The differences between Data Driven and Keyword Driven framework are described below.In data driven testing, we can run our tests on multiple data in multiple combinations with the help of parameterization. Here the data is treated as an input to the test script logic. Each data set can be treated ... Read More

Explain data driven framework.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:16:20

494 Views

Data driven framework is used for segregating test script logic from the test data. In this framework, we can run our test scripts using multiple sets of data in multiple combinations with the help of parameterization. The test data is maintained in separate files like excel, access, txt and so ... Read More

Explain Keyword driven framework.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:15:04

261 Views

Keyword driven framework is also known as table driven framework. Here we have a table where we describe the keywords or actions for the methods that have to be executed.Automation test scripts are developed based on the keywords or actions mentioned in excel. The automation testers need to extend the ... Read More

What do you mean by a Framework? Name the types of framework available.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:13:40

391 Views

A framework is a set of rules, guidelines and best practices that are followed to get the desired results. A testing framework should have the features listed below:Should support more than one browser.Should run on multiple platforms.Should run on multiple programming languages like Java, Python, C#, Ruby and so on.Efficient ... Read More

How to verify the color and background color of a web element in Selenium?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:12:43

9K+ Views

We can verify the color and background color of a web element in Selenium with the help of getCSSValue() method.Exampleimport org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; public class CssColorValue {    public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", ... Read More

List down the differences between Selenium and UTP.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:09:22

109 Views

The differences between Selenium and UTP are listed down below.sl.no.SeleniumUTP1It is open source and can be used free.It is a licensed tool and is commercialized for use.2It supports the majority of browsers like Chrome, Firefox, Internet Explorer, Safari and so on.It supports Chrome, Firefox and Internet Explorer.3It only tests web ... Read More

How to verify if an element is displayed on screen in Selenium?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:07:49

9K+ Views

We can verify the visibility of web elements like edit box, checkbox, radio buttons and so on with the help of method listed bels −isDisplayed()This method checks if a webelement is present on the screen.Syntax −Boolean result = driver.findElement(By.xpath("//span[text()=’Coding Ground’]")).isDispayed();isSelected()This method checks the status of the radio button, check box ... Read More

How to deal with reusable components in Selenium Java?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 11-Jun-2020 12:05:37

828 Views

We can deal with reusable components in Selenium Java with the help of inheritance concept. It is a parent child relationship where the child class inherits the properties and methods of the parent class.ExampleFor Parent class.import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.Properties; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public ... Read More

Advertisements