Posts tagged ‘java’

March 26, 2017

Selenium + Java: How to get started

Why is Selenium Webdriver with Java a great choice for web service integration testing?

Selenium Webdriver is an amazing tool allowing you to interact with browsers installed on your system. It allows you to create test scenarios like “open this page – check if an element is visible – click on this button – check what happened by examining the DOM”. This testing approach is known as behavior-driven development (BDD). In other words – you write a separate test program which replaces the manual tests you would have performed during the development process.

Selenium is a tool that controls a web browser. To write test scenarios you can use a programming language like JavaScript or Java. A full list of supported languages can be found on this page.

Why Java? Java is one of the most popular programming languages. The community has developed many libraries for interacting with databases, web servers, file servers, Cloud Services and other resources you may need to access from your test application. This plethora of libraries will allow you to create powerful test scenarios .

read more »

Advertisement
Tags: , ,
December 3, 2010

What is the most popular programming language?

This web site seems to be doing a decent job of gathering various statistics from which one can infer popularity:

http://www.langpop.com/

I’d like to believe that C# is the most popular language, but apparently Java ranks higher on most counts. In my opinion many more advances have been made in the .NET platform than the various java based platforms. My guess is much of the popularity is due to the dominance of java when it comes to mobile development (not counting the huge number of Objective-C based apps on the iPhone).

A friend of mine also noted the prevalence of Java in introductory computer science course.

Finally, another friend reminded me of Mark Twain’s quote:

“There are three kinds of lies: lies, damned lies, and statistics.”