Selenium ElementNotVisibleException
Selenium ElementNotVisibleException is also one of the frequent exceptions which we will face in selenium webdriver while automating any kind of application. This exception tells you that the WebElement that you are trying to interact with is not visible to the user. If the element is not visible to the user then they are not […]
Selenium NoSuchWindowException
Selenium NoSuchWindowException is similar to NoSuchFrameException, this is also one of the frequent exceptions which we will face in selenium webdriver. Sometimes applications will have child windows(i.e. Separate windows) which will open when you click on any link or button. Normally if you want to automate the child windows then you need to switch to […]
Selenium NoSuchFrameException
Selenium NoSuchFrameException will discuss about one of the frequent exceptions which we will face in selenium webdriver. You might face this kind of exception while automating the application if you have iFrames in your application. In modern applications people are using iFrames very frequently as if you want to show the information from other sources […]
Selenium NoSuchElementException
Selenium NoSuchElementException is the most and frequent facing exception. You will definitely find this kind of exception while automating the application. In this blog we will see what are the reasons to face this exception and how we can overcome this exception in detail. Below are the reasons to get this exception: The locator which […]
Selenium WebDriver Exceptions
Selenium Webdriver exceptions will discuss about what kind of exception we will get in selenium webdriver while executing the automation scripts. An exception is an infallible statement; it will always tell you why something has gone wrong in the code. It may not always be easy to understand the exception, but it does always tell […]
Handling Basic Elements in Selenium
Handling basic elements in Selenium will discuss about how we can interact with the elements which we will use very frequently on any applications. In this video we will understand the concept of WebElement also; as we will call all the elements which are there on the web page are web elements. In this, we […]
Useful Tools and Plugins in Selenium
Useful Tools and Plugins in selenium will discuss about some of the useful tools or plugins which are very helpful while writing the automation scripts using selenium webdriver. One of the tedious and time taking tasks in the selenium webdriver is to identify the element on the web page. For this we need to use […]
CSS Selector in Selenium WebDriver
CSS Selector in Selenium Web Driver will describe the importance of the CSS Selector in Selenium automation.It is very common that when you want to automate any application the most important thing is to identify the element to interact with it. Particularly when you using Selenium as your automation tool, explicitly you have to identify […]
XPath in Selenium WebDriver
XPath in Selenium Web Driver will describe the importance of the XPath in Selenium automation.It is very common that when you want to automate any application the most important thing is to identify the element to interact with it. Particularly when you using Selenium as your automation tool, explicitly you have to identify the element […]
Selenium WebDriver Locators
Selenium WebDriver Locators will discuss about the different kinds of locators which are available in the selenium webdriver. The basic use of locator is to identify the element on the web page uniquely. All the elements which are there on the webpage are called WebElements in selenium webdriver. Below are the webdriver supported locators: ID […]