What is WebDriver binaries and why they used in Selenium?












0














I came to know recently that using 'WebDriver Binaries' is a good practice in Automation projects. But not sure about term 'Binary' with webDriver.
Did some google searches also and got quite a lot posts around how to manage binaries; but not on why to use.
So it will be great if someone can guide me whats this with its benefits.










share|improve this question
























  • Did you use selenium in your automation project, or using other automation tool? If you use selenium, you can't avoid to use WebDriver binary only except you use earlier version of selenium and Firefox ( For earlier selenium and firefox, the webdriver for firefox is an extension and integrated into selenium jar, the extension will be installed into firefox automatically by selenium)
    – yong
    Nov 13 '18 at 7:55












  • Can you share code example of how you're using Selenium without WebDriver?
    – Andersson
    Nov 13 '18 at 8:23










  • HI Yong and Andersson: I'm using webDriver only but not sure/aware of term 'Binary'..may be question needs to be reformed I've edited it..:(
    – saTya
    Nov 13 '18 at 10:43








  • 1




    binary = binary executable file such as chromedriver or geckodriver
    – Corey Goldberg
    Nov 13 '18 at 22:47
















0














I came to know recently that using 'WebDriver Binaries' is a good practice in Automation projects. But not sure about term 'Binary' with webDriver.
Did some google searches also and got quite a lot posts around how to manage binaries; but not on why to use.
So it will be great if someone can guide me whats this with its benefits.










share|improve this question
























  • Did you use selenium in your automation project, or using other automation tool? If you use selenium, you can't avoid to use WebDriver binary only except you use earlier version of selenium and Firefox ( For earlier selenium and firefox, the webdriver for firefox is an extension and integrated into selenium jar, the extension will be installed into firefox automatically by selenium)
    – yong
    Nov 13 '18 at 7:55












  • Can you share code example of how you're using Selenium without WebDriver?
    – Andersson
    Nov 13 '18 at 8:23










  • HI Yong and Andersson: I'm using webDriver only but not sure/aware of term 'Binary'..may be question needs to be reformed I've edited it..:(
    – saTya
    Nov 13 '18 at 10:43








  • 1




    binary = binary executable file such as chromedriver or geckodriver
    – Corey Goldberg
    Nov 13 '18 at 22:47














0












0








0







I came to know recently that using 'WebDriver Binaries' is a good practice in Automation projects. But not sure about term 'Binary' with webDriver.
Did some google searches also and got quite a lot posts around how to manage binaries; but not on why to use.
So it will be great if someone can guide me whats this with its benefits.










share|improve this question















I came to know recently that using 'WebDriver Binaries' is a good practice in Automation projects. But not sure about term 'Binary' with webDriver.
Did some google searches also and got quite a lot posts around how to manage binaries; but not on why to use.
So it will be great if someone can guide me whats this with its benefits.







selenium selenium-webdriver webdriver






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 10:59







saTya

















asked Nov 13 '18 at 7:37









saTyasaTya

399




399












  • Did you use selenium in your automation project, or using other automation tool? If you use selenium, you can't avoid to use WebDriver binary only except you use earlier version of selenium and Firefox ( For earlier selenium and firefox, the webdriver for firefox is an extension and integrated into selenium jar, the extension will be installed into firefox automatically by selenium)
    – yong
    Nov 13 '18 at 7:55












  • Can you share code example of how you're using Selenium without WebDriver?
    – Andersson
    Nov 13 '18 at 8:23










  • HI Yong and Andersson: I'm using webDriver only but not sure/aware of term 'Binary'..may be question needs to be reformed I've edited it..:(
    – saTya
    Nov 13 '18 at 10:43








  • 1




    binary = binary executable file such as chromedriver or geckodriver
    – Corey Goldberg
    Nov 13 '18 at 22:47


















  • Did you use selenium in your automation project, or using other automation tool? If you use selenium, you can't avoid to use WebDriver binary only except you use earlier version of selenium and Firefox ( For earlier selenium and firefox, the webdriver for firefox is an extension and integrated into selenium jar, the extension will be installed into firefox automatically by selenium)
    – yong
    Nov 13 '18 at 7:55












  • Can you share code example of how you're using Selenium without WebDriver?
    – Andersson
    Nov 13 '18 at 8:23










  • HI Yong and Andersson: I'm using webDriver only but not sure/aware of term 'Binary'..may be question needs to be reformed I've edited it..:(
    – saTya
    Nov 13 '18 at 10:43








  • 1




    binary = binary executable file such as chromedriver or geckodriver
    – Corey Goldberg
    Nov 13 '18 at 22:47
















Did you use selenium in your automation project, or using other automation tool? If you use selenium, you can't avoid to use WebDriver binary only except you use earlier version of selenium and Firefox ( For earlier selenium and firefox, the webdriver for firefox is an extension and integrated into selenium jar, the extension will be installed into firefox automatically by selenium)
– yong
Nov 13 '18 at 7:55






Did you use selenium in your automation project, or using other automation tool? If you use selenium, you can't avoid to use WebDriver binary only except you use earlier version of selenium and Firefox ( For earlier selenium and firefox, the webdriver for firefox is an extension and integrated into selenium jar, the extension will be installed into firefox automatically by selenium)
– yong
Nov 13 '18 at 7:55














Can you share code example of how you're using Selenium without WebDriver?
– Andersson
Nov 13 '18 at 8:23




Can you share code example of how you're using Selenium without WebDriver?
– Andersson
Nov 13 '18 at 8:23












HI Yong and Andersson: I'm using webDriver only but not sure/aware of term 'Binary'..may be question needs to be reformed I've edited it..:(
– saTya
Nov 13 '18 at 10:43






HI Yong and Andersson: I'm using webDriver only but not sure/aware of term 'Binary'..may be question needs to be reformed I've edited it..:(
– saTya
Nov 13 '18 at 10:43






1




1




binary = binary executable file such as chromedriver or geckodriver
– Corey Goldberg
Nov 13 '18 at 22:47




binary = binary executable file such as chromedriver or geckodriver
– Corey Goldberg
Nov 13 '18 at 22:47












1 Answer
1






active

oldest

votes


















0














When you say WebDriver binaries, I am assuming that you are talking about the WebDriver bindings or the libraries. With out adding the WebDriver binding's into your project you can't really do anything with the WebDriver interface, like you can't invoke any browser or drive any website. Either you can manually add them into your project build path or you can use any dependency management tool like Maven for getting all the WebDriver libraries into your project. You can then use them.
You can either just add the standalone server file, which would do the same job as WebdDriver bindings.



There are Third Party Driver's which we use for each of the bowser's like, chrome - chromedriver.exe, firefox - geckodriver.exe ..etc ---These are also called as WebDriver binarie's(mostly refereed as driver files).






share|improve this answer























  • binaries refers to chromedriver/geckodriver/etc
    – Corey Goldberg
    Nov 13 '18 at 22:46











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276021%2fwhat-is-webdriver-binaries-and-why-they-used-in-selenium%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














When you say WebDriver binaries, I am assuming that you are talking about the WebDriver bindings or the libraries. With out adding the WebDriver binding's into your project you can't really do anything with the WebDriver interface, like you can't invoke any browser or drive any website. Either you can manually add them into your project build path or you can use any dependency management tool like Maven for getting all the WebDriver libraries into your project. You can then use them.
You can either just add the standalone server file, which would do the same job as WebdDriver bindings.



There are Third Party Driver's which we use for each of the bowser's like, chrome - chromedriver.exe, firefox - geckodriver.exe ..etc ---These are also called as WebDriver binarie's(mostly refereed as driver files).






share|improve this answer























  • binaries refers to chromedriver/geckodriver/etc
    – Corey Goldberg
    Nov 13 '18 at 22:46
















0














When you say WebDriver binaries, I am assuming that you are talking about the WebDriver bindings or the libraries. With out adding the WebDriver binding's into your project you can't really do anything with the WebDriver interface, like you can't invoke any browser or drive any website. Either you can manually add them into your project build path or you can use any dependency management tool like Maven for getting all the WebDriver libraries into your project. You can then use them.
You can either just add the standalone server file, which would do the same job as WebdDriver bindings.



There are Third Party Driver's which we use for each of the bowser's like, chrome - chromedriver.exe, firefox - geckodriver.exe ..etc ---These are also called as WebDriver binarie's(mostly refereed as driver files).






share|improve this answer























  • binaries refers to chromedriver/geckodriver/etc
    – Corey Goldberg
    Nov 13 '18 at 22:46














0












0








0






When you say WebDriver binaries, I am assuming that you are talking about the WebDriver bindings or the libraries. With out adding the WebDriver binding's into your project you can't really do anything with the WebDriver interface, like you can't invoke any browser or drive any website. Either you can manually add them into your project build path or you can use any dependency management tool like Maven for getting all the WebDriver libraries into your project. You can then use them.
You can either just add the standalone server file, which would do the same job as WebdDriver bindings.



There are Third Party Driver's which we use for each of the bowser's like, chrome - chromedriver.exe, firefox - geckodriver.exe ..etc ---These are also called as WebDriver binarie's(mostly refereed as driver files).






share|improve this answer














When you say WebDriver binaries, I am assuming that you are talking about the WebDriver bindings or the libraries. With out adding the WebDriver binding's into your project you can't really do anything with the WebDriver interface, like you can't invoke any browser or drive any website. Either you can manually add them into your project build path or you can use any dependency management tool like Maven for getting all the WebDriver libraries into your project. You can then use them.
You can either just add the standalone server file, which would do the same job as WebdDriver bindings.



There are Third Party Driver's which we use for each of the bowser's like, chrome - chromedriver.exe, firefox - geckodriver.exe ..etc ---These are also called as WebDriver binarie's(mostly refereed as driver files).







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 15 '18 at 10:27

























answered Nov 13 '18 at 8:50









KaushikKaushik

518




518












  • binaries refers to chromedriver/geckodriver/etc
    – Corey Goldberg
    Nov 13 '18 at 22:46


















  • binaries refers to chromedriver/geckodriver/etc
    – Corey Goldberg
    Nov 13 '18 at 22:46
















binaries refers to chromedriver/geckodriver/etc
– Corey Goldberg
Nov 13 '18 at 22:46




binaries refers to chromedriver/geckodriver/etc
– Corey Goldberg
Nov 13 '18 at 22:46


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276021%2fwhat-is-webdriver-binaries-and-why-they-used-in-selenium%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python