Found 626 Articles for CSS Framework

Explain Behavior Driven Framework.

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

194 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 the team. Technical coding knowledge is not necessary since the functional requirements or specifications are described in non – technical, common language.This specification can be used as a standard template for the testers while designing the test cases by both automation and manual testers. Test coverage for each business scenario ... Read More

State differences between Data Driven and Keyword Driven Framework.

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

844 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 as a separate test case.In keyword driven testing, the keywords that are developed represent an action. A list of keywords maintained in sequence form a test case. Thus a keyword once developed can be used in multiple test scripts.The data driven framework revolves around the data (maintained in excel, csv ... Read More

Explain data driven framework.

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

482 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 on.The test scripts need to be connected to these external files for fetching the data. The primary aim of this framework is to run our test scripts against various sets of data thereby reducing the number of test cases.Data driven framework has more test coverage, reusable features and is easy ... Read More

Explain Keyword driven framework.

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

260 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 framework capabilities by updating or building newer keywords.People working on manual testing with lesser programming knowledge can use this framework. The main idea is to identify the keywords or actions and utilize them in excel maintained for that particular test scenario. Often this excel sheet becomes a substitute for a ... Read More

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

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

378 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 handling of test data.Test case creation and updating are easy and maintainable.Provision for setting priority for each test case execution.Efficient test report generation.Proper test history maintenance for interpreting trends and analysis of execution results.Integration with continuous integration tools like Jenkins.Minimal manual intervention.Increases efficiency and productivity.Ensures efficient test code coverage.The types ... Read More

Align single rows of items in the center on different screens in Bootstrap 4

Alex Onsman
Updated on 18-Jun-2020 14:22:50

107 Views

Use .align-items-*-center class in Bootstrap 4 to align single rows of items in the center on different screens      .Let us see how to align flex items on a single row in the center of small, medium, and large screen sizes −Align on Small Screen Size in the center   Item 1   Item 2   Item 3   Item 4 Align on Medium Screen Size in the center   Item 1   Item 2   Item 3   Item 4 Align on Large Screen Size in the center   Item 1   Item 2   Item 3   ... Read More

Align an element with the baseline of the parent in Bootstrap 4

Alex Onsman
Updated on 18-Jun-2020 14:25:44

88 Views

Use the align-baseline class in Bootstrap 4 to align an element with the baseline of the parent elment.Set the align-baselinec class like the following code snippet −Now add the content inside it −     Demo Baseline You can try to run the following code to align an element with the parent’s baseline −ExampleLive Demo       Bootstrap Example                                   Example       This is demo text       Demo Baseline      

Bootstrap 4 .rounded-bottom class

Alex Onsman
Updated on 18-Jun-2020 14:27:57

226 Views

To set an element to have rounded corner, use the rounded-bottom class in Bootstrap 4.Set the rounded-bottom class −In the above , I have also set another class for styling the element −.demo {   width: 100px;   height: 120px;   margin: 10px;   background-color: orange; }You can try to run the following code to implement the rounded-bottom class −ExampleLive Demo       Bootstrap Example                             .demo {       width: 100px;       height: 120px;       margin: 10px;       background-color: orange;     }                   Rectangles       We have two rectangles with rounded corners (bottom):                  

Bootstrap 4 .flex-wrap class

Alex Onsman
Updated on 18-Jun-2020 14:29:50

2K+ Views

Use the flex-wrap class in Bootstrap 4 to wrap flex items. The following is the code snippet to wrap the flex items −   .   .  

Container to create a grid of Bootstrap 4 cards like a group

David Meador
Updated on 18-Jun-2020 14:31:59

263 Views

To set a container for Bootstrap card and set it like a group, use the card-group class.Use it and create a grid like the following with two Bootstrap cards −             Demo Text!                          Warning!           The following is an example to create a grid (group of cards) in Bootstrap −ExampleLive Demo       Bootstrap Example                             Group of Messages                             Demo Text!                                       Warning!                                        Well done!                                       Selected!                        

1 2 3 4 5 ... 63 Next
Advertisements