1. HTML (Hyper Text Markup language)
<html>
<body>
<div id=”Selenium”></div>
</body>
</html>
Here Selenium is the ID of the division and when we write the CSS (Cascade Style Sheet) it’s easy to give particular formatting style to a particular division.
Before us getting in to web testing you should have basic knowledge about HTML, HTML DOM and basics of JavaScript. HTML is markup language used to design web pages, using the HTML we specify the data’s in the web page can. Since a web application have HTML content. We should understand HTML and HTML Tags. What are the different HTML tag and its attributes of a HTML tags.
Attribute are used to identify the tags. We can give NAME, ID, and CLASS to HTML tags, consider an example.
<html>
<body>
<div id=”Selenium”></div>
</body>
</html>
Here Selenium is the ID of the division and when we write the CSS (Cascade Style Sheet) it’s easy to give particular formatting style to a particular division.
No comments:
Post a Comment