- Selenium 1 = Selenium Remote Control
- Selenium 2 = Selenium Webdriver, which combines elements of Selenium 1 and Webdriver.
- Selenium 3 = Selenium 1 + Selenium 2 (RC is deprecated and moved to legacy package)
Sunday, July 7, 2019
Related Posts:
Palindrome Number Program in Java Palindrome Number: A Palindrome number is a number that remains the same when its digits are reversed. We get total 90 numbers between 100 and 1000. public class PalindromeNumber { public static void main(String[] a… Read More
Difference between Iterator and Iterable? Both Iterator and Iterable are interfaces in Java Collection Framework. Here are some differences: Iterator: Iterator is an interface that manages iteration over an Iterable. It maintains a state of where we are… Read More
@FindBy, @FindBys, @FindAll, @CacheLookup - Selenium API All are used to mark a field in a page object. @FindBy: It is an alternative mechanism for locating the element or a list of elements. Used in conjunction with PageFactory this allows users to quickly and easily cre… Read More
Remove Duplicate values from an Array Write a Java Program to remove duplicate values from an array? package seleniumrepo; public class DisticntElements { public static void printDistinctElements(int[] arr){ for(int i=… Read More
Why we require a separate browser executable file to launch a browser in selenium? It is very frequently asked interview question for me. I was no answer as till now we know only we need drivers( like chromedriver.exe, geckodriver.exe, IEDriverServer.exe) and pass them to the System.setProperty() to… Read More
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment