Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Selenium Diffrence between WebDriver, WebDriver Backed and Remote control

I'm using Selenium, and I want export my test in java but there are 3 possibilities.

JAVA / Junit / WebDriver 
JAVA / Junit / WebDriver Backed 
JAVA / Junit / Remote Control 

And I would like to know difference among these three possibilities.

like image 631
kev85270 Avatar asked Aug 22 '26 09:08

kev85270


1 Answers

Short answer: If you're not already using Selenium Remote Control (RC), you want to use the WebDriver option.

Longer answer: RC is the older 1.0 version of Selenium. WebDriver is the newer 2.0 version. WebDriver-Backed is a middle ground, allowing you to use the old RC API through the new WebDriver implementation.

You can switch between the options in the IDE and see for yourself the different tests that are generated.

More info in the Selenium docs

like image 141
Mike B Avatar answered Aug 24 '26 22:08

Mike B