Home > HTML Elements

Different approaches for writing effective Xpaths for Web Automation

Are you new to web automation and struggling with crafting Xpaths for various scenarios? Look no further – this guide covers all possible ways to write Xpaths to suit every situation. Whether the web element's text is dynamic, attributes are unique, or you're dealing with complex structures, we've got you

This Article is TAGGED in , , , , , , , , . Read more

How to Create HTML Element using JavaScript?

This article provides information about creating HTML Elements dynamically instead of static HTML Elements using JavaScript. You can create HTML Element dynamically using document.createElement() method. It takes parameter as tag Name. Syntax [crayon-67370de1b1de8167873485/] In createElement() method it takes first parameter as tagName or nodeName to create Element. An optional ElementCreationOptions object, In createElement() method it

This Article is TAGGED in , , , . Read more

TYPES OF HTML ELEMENTS AND TAGS

Types Of Elements: Block Level: Block elements are meant to structure the main parts of your page, by dividing your content in coherent blocks wth full width. paragraphs <p> lists: UL and LI headings <h1> to <h6>, articles <article> sections <section> long quotes <blockquote> Division <div> Form <form> Table <table> Inline Level: Inline elements are meant to differentiate part of

This Article is TAGGED in , , . Read more