Hello Welcome to Selenium tutorial, in this post we will see how to verify Error Message in Selenium. Testing is nothing but verification and validation. Mostly in testing we verify title, some error messages , tooltip messages and so on. To capture error message or simple text as well we can use predefined method called getText(). getText() method will simply capture … [Read more...] about How to verify Error Message in Selenium Webdriver using Assert
Basic Selenium
Difference Between findelement and findelements in Selenium Webdriver
Hello Welcome to Selenium Tutorials, In this post, we will see what is the difference between FindElement and findElements in Selenium. Difference Between findelement and findelements in Selenium Webdriver findElement () will return only single WebElement and if that element is not located or we use some wrong selector then it will throw NoSuchElement … [Read more...] about Difference Between findelement and findelements in Selenium Webdriver
How to Integrate Sikuli with Selenium Webdriver
This article will help you to understand how we can integrate sikuli with selenium webdriver and how to start with automation testcases.Sikuli is another tool which is extremely useful in some cases. Integrate Sikuli with selenium webdriver When I started working with Selenium I used to face so many issues related to XPath and CSS so now we are going to remove all this from … [Read more...] about How to Integrate Sikuli with Selenium Webdriver
Best way to execute selenium test on firefox browser
Hi Guys, I think you must be happy that you have completed your Selenium Webdriver Installation and now you are ready to execute selenium test on firefox browser. If you are new to Selenium and still have not completed installation part then no worry at all. Check below article which will help you with that- Install Selenium Webdriver in Windows Machine If … [Read more...] about Best way to execute selenium test on firefox browser
Handle frames in selenium webdriver using different approach
In some application for better visibility developer use frame concept in web pages. In this article, we will mainly deal with handle frames in selenium webdriver. In this case, if your element exists in frames then we have to switch to frame first then we have to perform our operation. In Selenium we can use Switch to method to handle multiple windows, … [Read more...] about Handle frames in selenium webdriver using different approach