1HTML Elements are what make up HTML in general.
2This is a list of the main Html element tags.
3(There are more not included in this list.)
4<!DOCTYPE> Defines the document type
5<html> Defines the root of an HTML document </html>
6<title> Defines a title for the document </title>
7<header> Defines a header for a document or section </header>
8<main> Specifies the main content of a document </main>
9<footer> Defines a footer for a document or section </footer>
10<p> Defines a paragraph </p>
11<a> Defines a hyperlink </a>
12<b> Defines bold text </b>
13<br> Defines a single line break </br>
14<button> Defines a clickable button </button>
15<div> Defines a section in a document </div>
16<footer> Defines a footer for a document or section </footer>
17<h1> to <h6> Defines HTML headings </h1> to </h6>
18<img> Defines an image </img>
19<ol> Defines an ordered list </ol>
20<ul> Defines an unordered list </ul>
21<li> Defines a list item </li>
22<script> Defines a client-side script </script>
23<span> Defines a section in a document</span>
24<table> Defines a table </table>
25<td> Defines a cell in a table</td>
26<th> Defines a header cell in a table </th>
27<tr> Defines a row in a table </tr>
1--------------------------------------------------------------------
2
3What is your tag strategy in Cucumber?
4 - I create different testing suites
5 using different tags.
6 - We can use multiple tags in the same
7 feature file to have the same feature file
8 be part of different testing suites as well.
9
10 - for ex:
11
12 Feature #1:
13 @Smoke @Regression @abc
14
15- We use the "and - or - and not" keywords
16 to include or exclude specific tags from test runtime.