Selenium Topics – Page 12 – Make Selenium Easy
As a part of a Series of posts on Learn Selenium With Quiz, This set contains questions from implicit wait concepts in Selenium WebDriver. I will suggest you to go through below links before taking up quiz: Using sleep() in Selenium WebDriver Using implicit wait in Selenium WebDriver Now, take up the quiz below:
As a part of a Series of posts on Learn Selenium With Quiz, This set contains very basic questions which people generally confuse with. I will suggest you to read below post before taking this quiz: Hierarchy of Classes and Interfaces in Selenium WebDriver Now take the quiz here:
We can locate web element/s on a webpage using both FindBy and findElement() or findElements(). Primary purpose of both ways is same but the way it is done, is different. Below are the differences between FindBy and findElement in Selenium WebDriver: FindBy is an annotation while findElement and findElements are methods. Remember FindBy is provided … Continue reading Selenium Interview Question 4 – Difference Between @FindBy and findElement() Method in Selenium WebDriver
I am starting a series of posts on best strategies to be followed in front end automation. Here is the first post. “Locators’ are the backbone of front end automation. Your script does not see the actual UI/UX and perform the action. It depends on DOM where HTML tags and its attributes are defined. Maximum … Continue reading Front End Automation Strategies 1 – Don’t Write Complex XPath/CSS – Ask For Static Locators Instead
Hello Folks, As part of Frequently Asked Java Programs In Interviews For Freshers And Experienced, in this post we will see a java program to Find Distinct Characters In Given String. Problem Statement: User input: Make Selenium Easy Output: K L N I U Y Problem Solution: Logic: Convert input string in to same case either upper … Continue reading Frequently Asked Java Program 30: Java Program to Find Distinct Characters In Given String
I am again here with a new set of question related to Selenium WebDriver. I have included question mostly from Hierarchy of Classes and Interfaces in selenium WebDriver API. Hope it will be a good learning quiz for you.
Hello Folks, Taking a quiz is always a good way to test and learn. Test your basic knowledge here.
This is the mostly asked interview question and confusing too for Selenium testers. People generally differentiate get() and navigate() methods as below: get() method holds or waits till page is loaded while navigate() does not. Above statement is NOT CORRECT. Referring official document of Selenium is always good to learn valid points. It says get() … Continue reading Selenium Interview Question 3 – Difference Between get() and navigate() Methods of Selenium WebDriver
Hello Guys, Whether you are an API developer or tester, you must understand the difference between PUT and PATCH http methods. It is also a frequently asked interview question. Let’s understand PUT and PATCH in details. PUT:- An HTTP PUT method is used to primarily update the resource information but it also can be used … Continue reading Postman Tutorial Part 9 – DIfference Between Put and Patch HTTP Methods
Recently, a guy asked me below question: I need to verify title of an article is in bold. Article title has no or tag. How to verify it now? It was also new to me and learnt new thing that day. So I am sharing my knowledge here. HTML provides two tags to … Continue reading How To Verify Text In Bold Using Selenium WebDriver