Course Content
Selenium Python First Script
Selenium Python First Script
0/2
HTML Form elements
HTML Form elements
0/1
Handle HTML Frames
Handle HTML Frames
0/2
Handling Dropdown Lists
Handling Dropdown Lists
0/2
Selenium Action class
Selenium Action class
0/1
Selenium Python for Beginners [ 2024 ]
About Lesson

HTML Frame

An HTML Frame divides the web page into separate sections, each with its own content and layout. Frames also allow you to create multiple independent windows within a single browser window. This can be useful for organizing large amounts of information or creating interactive applications where users can switch between different views without reloading the entire page.

Each frame is represented inside a frameset tag and looks like the following:

<frameset>

<frame name=”one” src=”one.html”>

<frame name=”two” src=”two.html”>

</frameset>

Join the conversation