{"id":647,"date":"2019-12-05T11:28:21","date_gmt":"2019-12-05T05:58:21","guid":{"rendered":"http:\/\/http:\/\/artoftesting.com\/\/?p=647"},"modified":"2020-06-01T17:53:51","modified_gmt":"2020-06-01T12:23:51","slug":"selenium-webdriver-installation","status":"publish","type":"post","link":"https:\/\/artoftesting.com\/selenium-webdriver-installation","title":{"rendered":"Selenium Webdriver Installation"},"content":{"rendered":"\n<p>In this tutorial, we will set up our test environment to run the Selenium automation suite. We will install Java, download Eclipse, add Selenium jars to an Eclipse project, and then provide you a sample script to test the Selenium WebDriver installation.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_73 counter-flat ez-toc-counter ez-toc-custom ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\"><p class=\"ez-toc-title\" style=\"cursor:inherit\">Content<\/p>\n<\/div><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/artoftesting.com\/selenium-webdriver-installation\/#Selenium_Webdriver_Installation_Steps\" title=\"Selenium Webdriver Installation Steps\">Selenium Webdriver Installation Steps<\/a><\/li><li class='ez-toc-page-1'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/artoftesting.com\/selenium-webdriver-installation\/#Code_snippet_to_launch_the_Firefox_browser\" title=\"Code snippet to launch the Firefox browser\">Code snippet to launch the Firefox browser<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Selenium_Webdriver_Installation_Steps\"><\/span>Selenium Webdriver Installation Steps<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Following steps will guide you through setting up Selenium WebDriver on your machine-<br><br><strong>Step.1. Configuring Java on a machine<\/strong>.<br>Download the latest version of the Java Development Kit(JDK) from\u00a0<a rel=\"noreferrer noopener\" href=\"http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/index.html\" target=\"_blank\">Oracle.com<\/a>. Follow the steps mentioned to install JDK. We are installing JDK as it will be required for developing and running our automation scripts which are nothing but Java programs.<br><br><br><strong>Step.2. Download eclipse or any Java IDE of your choice<\/strong>.<br>Download the latest version of the Java IDE you would like to use, for Eclipse the download link is\u00a0<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.eclipse.org\/downloads\/\">Eclipse.org<\/a>. Select the appropriate version of Eclipse depending on your system type- 34 bit or 64 bit.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"458\" height=\"280\" src=\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/eclipse-download.jpg\" alt=\"Eclipse download\" class=\"wp-image-3147\" srcset=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/eclipse-download.jpg 458w, https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/eclipse-download-300x183.jpg 300w\" sizes=\"auto, (max-width: 458px) 100vw, 458px\" \/><\/figure><\/div>\n\n\n\n<p><br><strong>Step.3. Download Selenium WebDriver jar from the Selenium.dev website<\/strong>.<br>Go to the <a href=\"https:\/\/www.selenium.dev\/downloads\/\">Selenium.dev<\/a> website and under &#8220;Selenium Client &amp; WebDriver Language Bindings&#8221;, click on &#8216;Download&#8217; link for language Java. <\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"481\" height=\"268\" src=\"http:\/\/artoftesting.com\/wp-content\/uploads\/2020\/06\/selenium-download.jpg\" alt=\"Selenium download\" class=\"wp-image-3148\" srcset=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/06\/selenium-download.jpg 481w, https:\/\/artoftesting.com\/wp-content\/uploads\/2020\/06\/selenium-download-300x167.jpg 300w\" sizes=\"auto, (max-width: 481px) 100vw, 481px\" \/><\/figure><\/div>\n\n\n\n<p>Unzip the package and place it on any directory as a library folder.<br><br><strong>Step.4. Creating a project and configuring Selenium jars<\/strong>.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Launch eclipse.exe.<\/li><li>Set your workspace to any location preferably other than C:(a workspace is a physical location where we store our project or group of related projects).<\/li><li>Now create a new project- File->New->Project&#8230;->Java->Java Project.<\/li><li>Name your project and click Finish.<\/li><li>Now you will see an src folder under your project. Under this we need to create a package-Right Click src->New->Package (Basically these packages are used to group together related classes). Name your package e.g. &#8216;myTestPackage&#8217;.<\/li><li>Inside this package create a new class and name it e.g. Test, your Test.java class will get created.<br><br><\/li><\/ul>\n\n\n\n<p><strong>Step.5. Adding Selenium jars<\/strong><br>This step is required for the Selenium installation in Eclipse. Right Click your project on the left and click on properties. A &#8220;Properties for {project name}&#8221; dialog box will appear. Click on &#8220;Java Build Path&#8221; on the left and then click on the Libraries tab on the right. In this tab click on the &#8220;Add External Jars..&#8221; button.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"535\" height=\"380\" src=\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/jars4.jpg\" alt=\"Selenium&quot;\" class=\"wp-image-651\" srcset=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/jars4.jpg 535w, https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/jars4-300x213.jpg 300w\" sizes=\"auto, (max-width: 535px) 100vw, 535px\" \/><\/figure><\/div>\n\n\n\n<p>Now browse to the location where selenium libraries are placed (library folder Step#3). Make sure to add both the libraries-selenium-java-2.39.0.jar and selenium-java-2.39.0-srcs.jar along with the libraries present in the libs folder(selenium-2.39.0\\libs). The selected libraries will appear, click OK to add these libraries to your project. You can verify the same in the &#8220;Referenced Libraries&#8221; section under your project in the &#8220;Package Explorer&#8221; section on the left.<br><br><br><strong>Step.6. Creating the first Selenium WebDriver project<\/strong><br>Time to test the setup. Now, we will create our first selenium project, in which we will just open the Firefox browser and launch a website. The following steps are required to launch the firefox browser.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Download geckodriver.exe from&nbsp;<a href=\"https:\/\/github.com\/mozilla\/geckodriver\/releases\">GeckoDriver Github Release Page<\/a>. Make sure to download the right driver file based on your platform and OS version.<\/li><li>Set the&nbsp;<strong>System Property<\/strong>&nbsp;for &#8220;webdriver.gecko.driver&#8221; with the geckodriver.exe path &#8211; System.setProperty(&#8220;webdriver.gecko.driver&#8221;,&#8221;geckodriver.exe path&#8221;);<br><br><\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Code_snippet_to_launch_the_Firefox_browser\"><\/span>Code snippet to launch the Firefox browser<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\npackage testPackage;\n\nimport org.openqa.selenium.WebDriver;\n\npublic class FirefoxBrowserLaunchDemo {\n\n    public static void main(String&#x5B;] args) {\n        \n        \/\/Creating a driver object referencing WebDriver interface\n        WebDriver driver;\n        \n        \/\/Setting webdriver.gecko.driver property\n        System.setProperty(&quot;webdriver.gecko.driver&quot;, &quot;{path to geckodriver}\\\\geckodriver.exe&quot;);\n        \n        \/\/Instantiating driver object and launching browser\n        driver = new FirefoxDriver();\n        \n        \/\/Using get() method to open a webpage\n        driver.get(&quot;http:\/\/artoftesting.com&quot;);\n        \n        \/\/Closing the browser\n        driver.quit();\n \n    }\n \n}\n<\/pre><\/div>\n\n\n<p> To run the test, right-click on Test.java file on the Package Explorer section, hover over &#8220;Run As&#8221; and select &#8220;Java Application&#8221;. Firefox browser will launch and open artoftesting.com. <\/p>\n\n\n\n<p><br>That&#8217;s all we have in this post. Check out our complete Selenium WebDriver tutorial here &#8211; <a href=\"http:\/\/artoftesting.com\/selenium-tutorial\">Selenium WebDriver &#8211; Complete Step-by-Step Tutorial<\/a>. Thanks.<\/p>\n\n\n\n<script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [{\n    \"@type\": \"Question\",\n    \"name\": \"How to install Selenium WebDriver in Eclipse?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"Selenium WebDriver comes in the form of a jar which is required to be included in the Libraries tab of Eclipse's Java Build Path properties or as a dependency in the pom.xml file.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How to download Selenium Webdriver?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"You can download Selenium Webdriver from the Selenium.dev website and choose the desired Selenium Client based on our language preference - Java, Python, Ruby, C#, Javascript etc.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How to add Selenium jar files in Eclipse?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"Right Click your project on the left and click on properties. Click on \u201cJava Build Path\u201d on the left and then click on the Libraries tab on the right. In this tab, click on the \u201cAdd External Jars..\u201d button. Now browse to the location where selenium libraries are placed and add them.\" \n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How to install Selenium on Windows?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"For installing Selenium on Windows with Java, first you need to install Java(JDK), download & configure Eclipse  or any other preferred IDE of your choice. After that you are required to add Selenium Jars to the 'Java Buid Path' of Eclipse.\"\n    }\n  }]\n}\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will set up our test environment to run the Selenium automation suite. We will install Java, download Eclipse, add Selenium jars to an Eclipse project, and then provide you a sample script to test the Selenium WebDriver installation. Selenium Webdriver Installation Steps Following steps will guide you through setting up Selenium &#8230; <a title=\"Selenium Webdriver Installation\" class=\"read-more\" href=\"https:\/\/artoftesting.com\/selenium-webdriver-installation\" aria-label=\"Read more about Selenium Webdriver Installation\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":2732,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-647","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-selenium"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Selenium Installation | Selenium Webdriver with Eclipse and Java<\/title>\n<meta name=\"description\" content=\"Selenium WebDriver installation steps in Eclipse IDE with Java along with a sample script to test the setup. The sample script will test the Selenium installation in eclipse by launching the Firefox browser.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/artoftesting.com\/selenium-webdriver-installation\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Selenium Installation | Selenium Webdriver with Eclipse and Java\" \/>\n<meta property=\"og:description\" content=\"Selenium WebDriver installation steps in Eclipse IDE with Java along with a sample script to test the setup. The sample script will test the Selenium installation in eclipse by launching the Firefox browser.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/artoftesting.com\/selenium-webdriver-installation\" \/>\n<meta property=\"og:site_name\" content=\"ArtOfTesting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/artoftesting\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-05T05:58:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-06-01T12:23:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kuldeep Rana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@theartoftesting\" \/>\n<meta name=\"twitter:site\" content=\"@theartoftesting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kuldeep Rana\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation#article\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation\"},\"author\":{\"name\":\"Kuldeep Rana\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\"},\"headline\":\"Selenium Webdriver Installation\",\"datePublished\":\"2019-12-05T05:58:21+00:00\",\"dateModified\":\"2020-06-01T12:23:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation\"},\"wordCount\":596,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg\",\"articleSection\":[\"Selenium\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/artoftesting.com\/selenium-webdriver-installation#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation\",\"url\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation\",\"name\":\"Selenium Installation | Selenium Webdriver with Eclipse and Java\",\"isPartOf\":{\"@id\":\"https:\/\/artoftesting.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage\"},\"thumbnailUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg\",\"datePublished\":\"2019-12-05T05:58:21+00:00\",\"dateModified\":\"2020-06-01T12:23:51+00:00\",\"description\":\"Selenium WebDriver installation steps in Eclipse IDE with Java along with a sample script to test the setup. The sample script will test the Selenium installation in eclipse by launching the Firefox browser.\",\"breadcrumb\":{\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/artoftesting.com\/selenium-webdriver-installation\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage\",\"url\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg\",\"contentUrl\":\"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg\",\"width\":700,\"height\":400,\"caption\":\"Selenium Installation\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/artoftesting.com\/selenium-webdriver-installation#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/artoftesting.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automation Testing\",\"item\":\"https:\/\/artoftesting.com\/category\/automation-testing\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Selenium\",\"item\":\"https:\/\/artoftesting.com\/category\/automation-testing\/selenium\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Selenium Webdriver Installation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/artoftesting.com\/#website\",\"url\":\"https:\/\/artoftesting.com\/\",\"name\":\"ArtOfTesting\",\"description\":\"A Beginners Guide to Testing\",\"publisher\":{\"@id\":\"https:\/\/artoftesting.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/artoftesting.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/artoftesting.com\/#organization\",\"name\":\"ArtOfTesting\",\"url\":\"https:\/\/artoftesting.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png\",\"contentUrl\":\"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png\",\"width\":400,\"height\":60,\"caption\":\"ArtOfTesting\"},\"image\":{\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/artoftesting\",\"https:\/\/x.com\/theartoftesting\",\"https:\/\/www.linkedin.com\/groups\/4797819\/\",\"https:\/\/in.pinterest.com\/artoftesting\/\",\"https:\/\/www.youtube.com\/channel\/UCQ9PUVenvvyrUdDQ9yKn31Q\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5\",\"name\":\"Kuldeep Rana\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/artoftesting.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g\",\"caption\":\"Kuldeep Rana\"},\"description\":\"Kuldeep is the founder and lead author of ArtOfTesting. He is skilled in test automation, performance testing, big data, and CI-CD. He brings his decade of experience to his current role where he is dedicated to educating the QA professionals.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Selenium Installation | Selenium Webdriver with Eclipse and Java","description":"Selenium WebDriver installation steps in Eclipse IDE with Java along with a sample script to test the setup. The sample script will test the Selenium installation in eclipse by launching the Firefox browser.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/artoftesting.com\/selenium-webdriver-installation","og_locale":"en_US","og_type":"article","og_title":"Selenium Installation | Selenium Webdriver with Eclipse and Java","og_description":"Selenium WebDriver installation steps in Eclipse IDE with Java along with a sample script to test the setup. The sample script will test the Selenium installation in eclipse by launching the Firefox browser.","og_url":"https:\/\/artoftesting.com\/selenium-webdriver-installation","og_site_name":"ArtOfTesting","article_publisher":"https:\/\/facebook.com\/artoftesting","article_published_time":"2019-12-05T05:58:21+00:00","article_modified_time":"2020-06-01T12:23:51+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg","type":"image\/jpeg"}],"author":"Kuldeep Rana","twitter_card":"summary_large_image","twitter_creator":"@theartoftesting","twitter_site":"@theartoftesting","twitter_misc":{"Written by":"Kuldeep Rana","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation#article","isPartOf":{"@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation"},"author":{"name":"Kuldeep Rana","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5"},"headline":"Selenium Webdriver Installation","datePublished":"2019-12-05T05:58:21+00:00","dateModified":"2020-06-01T12:23:51+00:00","mainEntityOfPage":{"@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation"},"wordCount":596,"commentCount":5,"publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"image":{"@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg","articleSection":["Selenium"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/artoftesting.com\/selenium-webdriver-installation#respond"]}]},{"@type":"WebPage","@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation","url":"https:\/\/artoftesting.com\/selenium-webdriver-installation","name":"Selenium Installation | Selenium Webdriver with Eclipse and Java","isPartOf":{"@id":"https:\/\/artoftesting.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage"},"image":{"@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage"},"thumbnailUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg","datePublished":"2019-12-05T05:58:21+00:00","dateModified":"2020-06-01T12:23:51+00:00","description":"Selenium WebDriver installation steps in Eclipse IDE with Java along with a sample script to test the setup. The sample script will test the Selenium installation in eclipse by launching the Firefox browser.","breadcrumb":{"@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/artoftesting.com\/selenium-webdriver-installation"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation#primaryimage","url":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg","contentUrl":"https:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/selenium-webdriver-setup.jpg","width":700,"height":400,"caption":"Selenium Installation"},{"@type":"BreadcrumbList","@id":"https:\/\/artoftesting.com\/selenium-webdriver-installation#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/artoftesting.com\/"},{"@type":"ListItem","position":2,"name":"Automation Testing","item":"https:\/\/artoftesting.com\/category\/automation-testing"},{"@type":"ListItem","position":3,"name":"Selenium","item":"https:\/\/artoftesting.com\/category\/automation-testing\/selenium"},{"@type":"ListItem","position":4,"name":"Selenium Webdriver Installation"}]},{"@type":"WebSite","@id":"https:\/\/artoftesting.com\/#website","url":"https:\/\/artoftesting.com\/","name":"ArtOfTesting","description":"A Beginners Guide to Testing","publisher":{"@id":"https:\/\/artoftesting.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/artoftesting.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/artoftesting.com\/#organization","name":"ArtOfTesting","url":"https:\/\/artoftesting.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/","url":"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png","contentUrl":"http:\/\/artoftesting.com\/wp-content\/uploads\/2019\/12\/Artoftesting_logo.png","width":400,"height":60,"caption":"ArtOfTesting"},"image":{"@id":"https:\/\/artoftesting.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/artoftesting","https:\/\/x.com\/theartoftesting","https:\/\/www.linkedin.com\/groups\/4797819\/","https:\/\/in.pinterest.com\/artoftesting\/","https:\/\/www.youtube.com\/channel\/UCQ9PUVenvvyrUdDQ9yKn31Q"]},{"@type":"Person","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/7846d06225b52c778d160becf65996a5","name":"Kuldeep Rana","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/artoftesting.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cb5979a4b81ca7739c75080e473fad391a8665364e72abaddec9002dd4553326?s=96&d=mm&r=g","caption":"Kuldeep Rana"},"description":"Kuldeep is the founder and lead author of ArtOfTesting. He is skilled in test automation, performance testing, big data, and CI-CD. He brings his decade of experience to his current role where he is dedicated to educating the QA professionals."}]}},"_links":{"self":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/647","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/comments?post=647"}],"version-history":[{"count":0,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/posts\/647\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media\/2732"}],"wp:attachment":[{"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/media?parent=647"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/categories?post=647"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artoftesting.com\/wp-json\/wp\/v2\/tags?post=647"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}