Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPhaneendra N
1,218 PointsSelenium web driver Vs Chrome driver?
Hi, I understand Chrome driver is specific to Chrome. Whats the fundamental jobs of each of these 'drivers'. Mainly the difference
Do we need both of them to be installed. Are both language specific?
Cheers! Phaneendra
1 Answer
Clinton Billedeaux
1,393 PointsThe shortest answer is: You need both, if you want to test using Chrome.
WebDriver is the Selenium library of code containing the FindBys and Clicks and SendKeys code. ChromeDriver is a library of code that controls the Chrome Browser.
In order to create your test scripts, you need WebDriver. In order to control the Chrome Browser, you need ChromeDriver.
Phaneendra N
1,218 PointsPhaneendra N
1,218 PointsHi Clinton, Crisp and clear answer :)
Thanks!