testnerdy.blogspot.com
Test Nerd: Selenium wait()
http://testnerdy.blogspot.com/2010/06/selenium-wait.html
Monday, June 21, 2010. Selenium wait() not defined? Selenium uses the browser to make requests and process the server response. In short, selenium asks for a page and server sends back the response. The browser then constructs a DOM tree out of the response. Selenium then parses this DOM tree and looks for elements as per the test statements. Step 1 - @selenium.open("www.google.com"). Step 2 - @selenium.wait(). Step 3- @selenium.is text present("Google ."). Here the request is Step 1. Blogs I Am Following.
testnerdy.blogspot.com
Test Nerd: How to be innovative and how to keep yourself motivated
http://testnerdy.blogspot.com/2010/06/how-to-be-innovative-and-how-to-keep.html
Saturday, June 19, 2010. How to be innovative and how to keep yourself motivated. At work some times it could be possible that you end up working on certain project and may end up performing kinda similar tasks w/very little variations. So would that become monotonous? Do you think if it becomes monotonous.you may loose productivity to some extent and to help performing excellent at work, you need your motivation to be boost? I found below an interesting article published which helps self-motivation:.
testnerdy.blogspot.com
Test Nerd: JMeter or Selenium - Performance Testing of Web App
http://testnerdy.blogspot.com/2010/06/jmeter-or-selenium-performance-testing.html
Friday, June 18, 2010. JMeter or Selenium - Performance Testing of Web App. Some one recently asked me an interesting question "which tool better for performance testing for given web app - Selenium? Or any other open source? Well here is my take. Subscribe to: Post Comments (Atom). How to be innovative and how to keep yourself moti. JMeter or Selenium - Performance Testing of Web Ap. Blogs I Am Following. Google Open Source Blog. Traditional Media: Let's Take it Offline. Http:/ code.google.com.
testnerdy.blogspot.com
Test Nerd: 3/21/10 - 3/28/10
http://testnerdy.blogspot.com/2010_03_21_archive.html
Sunday, March 21, 2010. As requested posting a blog about Junit. Simple framework for writing and running automated tests. Includes useful abstractions for running tests including test cases, text fixtures and test suites. Package junit.samples;. Import junit.frameworks.*;. Import java.util.Vector;. Import junit.extensions.*;. Public class VectorTest extends TestCase {. Protected Vector fEmpty;. Protected Vector fFull;. Public VectorTest(String name) {. Public static void main (String[] args) {. Threaded...
testnerdy.blogspot.com
Test Nerd: 11/8/09 - 11/15/09
http://testnerdy.blogspot.com/2009_11_08_archive.html
Friday, November 13, 2009. Domain Based Testing: Usually carried out based on two concepts - domain analysis and domain modelling. Its intent is to focus on test rather than the action of the test. It wraps browser object into page object that provides API that returns the Html element object based on what you can do at the current page. Login page = LoginPage.new(@browser). Login page.username.type('username'). Login page.password.type('password'). Login page.logon button.click. Blogs I Am Following.
testnerdy.blogspot.com
Test Nerd: 8/29/10 - 9/5/10
http://testnerdy.blogspot.com/2010_08_29_archive.html
Tuesday, August 31, 2010. All About World of Mobile! Mobile in general is such niche area and glad that at LinkedIn, I am getting to explore as well as expand new horizon. My team is focus on supporting Mobile native apps, hybrid app as well as mobile web software test cycles. I may not be able to write more here but look forward to a blog from me on engineering.linkedin.com. Subscribe to: Posts (Atom). All About World of Mobile! Blogs I Am Following. Google Open Source Blog.
testnerdy.blogspot.com
Test Nerd: 12/13/09 - 12/20/09
http://testnerdy.blogspot.com/2009_12_13_archive.html
Thursday, December 17, 2009. A day without work notebook or laptop :-). How would a day be without a notebook or laptop :-) My machine froze on me this morning, driver just died and now it just not coming up! Waiting to get a replacement. while waiting on machine, thinking how could be a day with no laptop or notebook? Subscribe to: Posts (Atom). A day without work notebook or laptop :-). Blogs I Am Following. Google Open Source Blog. Traditional Media: Let's Take it Offline.
styleandculture.wordpress.com
Being my Boss – Joshua Onysko | Style, Culture & Such
https://styleandculture.wordpress.com/2006/09/25/being-my-boss-joshua-onysko
Style, Culture and Such. The Business of Culture. Web-Tech, Online Media. Laquo; Indiscrete discrimination. What’s your dream? Being my Boss – Joshua Onysko. September 25, 2006. A high-school dropout and a vagabond by nature, Joshua Onysko, has probably done it all. When I interviewed him, I remarked how he has lived several lives in this one lifetime, a feat many of us aspire to achieve. Barely 30 years old, Joshua has stories to share. For instance, the lowest minimum wage that Pangea pays it’s e...
testnerdy.blogspot.com
Test Nerd: 2/21/10 - 2/28/10
http://testnerdy.blogspot.com/2010_02_21_archive.html
Thursday, February 25, 2010. Watij - Web App Testing In Java. Watij: is a pure Java api created to allow for the automation of web applications through a real browser. It performs the same actions you would in a browser: filling out forms, navigating, clicking random stuff, and verifying results. Did I mentioned, it was inspired by Watir - Web App testing in Ruby. Basic terminology that Watij follows is:. Container: Browser is a container. Document: The webpage you view. IE ie = new IE();. Here is an exa...