Verify popup window with selenium webdriver

selenium

To verify popup window we use the following code – and the output should be – Parent {a3e8ddf8-0462-4f31-b92c-fb4faf8f7b90} Popup {62fb6e63-e86c-4ad7-b3c2-41fbfa09f822} able to switch Popup window contains – Hello Popup world! ; ) now switch to […]

Share Button

Check maxlength and readonly property of inputbox with selenium webdriver

selenium

To check the maxlength of inputbox and to verify the field is readonly or not we can use the following code – and the output should be – Opening http://demo.tanmaysarkar.com/sample_03.html First name’s max length is […]

Share Button

Radio button checkbox is checked with selenium webdriver

selenium

To verify that radio button or the checkbox is checked or not we can use the following code. and after successfully running the code you can get the following output – Opening http://demo.tanmaysarkar.com/sample_03.html Gender is […]

Share Button

Entering data into HTML form with selenium webdriver

selenium

To entering data into html form we can use this sample piece of code of selenium webdriver. It open the desired webpage with browser and will enter data into webpage.

Share Button

Use iframe with selenium

selenium

To switch iframe we can use this sample code –

Share Button