
DIEHARDTECHY.COM
DieHardTechyA blog about java ocjp practice question, mobile tips, sql,networking,information, games, vocab, jobs, software testing, technologies,free projects.
http://www.diehardtechy.com/
A blog about java ocjp practice question, mobile tips, sql,networking,information, games, vocab, jobs, software testing, technologies,free projects.
http://www.diehardtechy.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.3 seconds
16x16
akash jain
2nd floo●●●●●●●● complex
ame●●●pet
hyd●●●bad , Andhra Pradesh, 500016
India
View this contact
akash jain
2nd floo●●●●●●●● complex
ame●●●pet
hyd●●●bad , Andhra Pradesh, 500016
India
View this contact
akash jain
2nd floo●●●●●●●● complex
ame●●●pet
hyd●●●bad , Andhra Pradesh, 500016
India
View this contact
11
YEARS
7
MONTHS
28
DAYS
GODADDY.COM, LLC
WHOIS : whois.godaddy.com
REFERRED : http://registrar.godaddy.com
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
16
SITE IP
172.217.6.83
LOAD TIME
0.293 sec
SCORE
6.2
DieHardTechy | diehardtechy.com Reviews
https://diehardtechy.com
A blog about java ocjp practice question, mobile tips, sql,networking,information, games, vocab, jobs, software testing, technologies,free projects.
DieHardTechy
http://www.diehardtechy.com/2014_09_01_archive.html
Thursday, September 25, 2014. How to remove duplicate of LinkedList? How to remove duplicates of a LinkedList? This is one of the most frequently asked java question in oracle interview. There can be n number of ways to do the task, below program demonstrates a simple way of doing this. Output of the Above example :. Wednesday, September 24, 2014. Catching multiple exception in Java: java 1.7 update. Did you know from java 1.7 you can catch multiple exceptions in a single catch block? We are not allowed ...
DieHardTechy
http://www.diehardtechy.com/2014_10_01_archive.html
Tuesday, October 14, 2014. HashSet in collection framework. HashSet is the direct subclass of Set interface , HashSet doesn’t allow duplicates element insertion and insertion order is not preserved. Underlined data structure is HashTable. HashSet doesn't allow duplicates. Insertion order is not preserved. Null insertion is allowed. Heterogeneous objects are allowed. Implements Serializable and clonable interfaces. HashSet hs=new HashSet(); / creates an empty HashSet. HashSet hs=new HashSet(Collection c);.
DieHardTechy
http://www.diehardtechy.com/2015/02/story-of-week-facts-of-life-cup-or.html
Tuesday, February 17, 2015. Story of the Week-Facts of Life (Cup or Coffee). The happiest people in the world are not those who have no problems, but those who learn to live with things that are less than perfect. A group of graduates, highly established in their careers, got together to visit their old university professor. Conversation soon turned into complaints about stress in work and life. When all the students had a cup of coffee, the professor said:. 8211; Sometimes, by concentrating on the cup, ...
DieHardTechy
http://www.diehardtechy.com/2014_07_01_archive.html
Wednesday, July 30, 2014. How to clean waste space from hard drive? With pre installed utility : Disk cleanup. How to clean waste space from hard drive? To clean the waste space from hard drive to get better system performance, windows provides a built in utility called disk cleanup. How to use Disk cleanup. Disk cleanup utility can be launched by either of the following ways. Press window - To launch run window. In run and hit enter- To launch Disk cleanup. Go to window search. Varargs in Java was intro...
DieHardTechy
http://www.diehardtechy.com/2015/02/webdriver-selenium-test-script-to.html
Friday, February 27, 2015. Webdriver] Selenium test script to scroll and print all items name from a web page. Write a selenium web driver test script to scroll and print all items name from a web page. Below is an example using FlipKart. Log in to Flipkart. Type Samsung in search box and. Scroll and print all the names. Scrolling is the only challenging portion here, until when we have to scroll is the question. In the above scenario we will scroll the web page until no-more-results are displayed. In an...
TOTAL PAGES IN THIS WEBSITE
19
Selenium : Tester In You
http://www.testerinyou.com/2010/11/failed-to-start-socketlistener000004444.html
Nourish the tester in you. November 16, 2010. Failed to start: SocketListener0@0.0.0.0:4444. 14:45:33.140 WARN - Failed to start: SocketListener0@0.0.0.0:4444 Exception in thread "main" java.net.BindException: Selenium is already running on port 4444. Or some other service is. at org.openqa.selenium.server.SeleniumServer.start(SeleniumServer.java:378). I Google for a solution and finally i got solution from my friends blog. Now run your script from eclipse.server will start now with out any problem.
Selenium : Tester In You
http://www.testerinyou.com/2011/03/simulate-enter-key-press.html
Nourish the tester in you. March 26, 2011. Simulate Enter key press. Here is a sample script how to simulate the Enter key press. Here we go . Import org.junit.AfterClass;. Import org.junit.BeforeClass;. Import org.junit.Test;. Import org.openqa.selenium.server.SeleniumServer;. Import com.thoughtworks.selenium.*;. Public class Enter extends SeleneseTestCase{. Public Selenium selenium;. Public SeleniumServer seleniumserver;. Public void setUp() throws Exception {. Seleniumserver = new SeleniumServer();.
Selenium : Tester In You
http://www.testerinyou.com/2011/12/handling-https-sites-using-selenium.html
Nourish the tester in you. December 29, 2011. Handling HTTPS sites using Selenium. As all we know selenium is used for automating web application. We will not have any difficulty in automating HTTP site.We face some of the below issues while automating HTTPS sites. HTTPS sites will show some security notifications below are some:. To over come this issue we need to add certification. 1 Need to add remote control configuration. RemoteControlConfiguration rcc = new RemoteControlConfiguration ();. Public vo...
Selenium : Tester In You
http://www.testerinyou.com/2015/07/how-to-test-for-disabled-elements.html
Nourish the tester in you. July 30, 2015. How To Test For Disabled Elements. Long back i saw some post from. A free, once weekly Selenium tip newsletter that's read by thousands of testing professionals,. Also the author of. A guide on how to use Selenium successfully. I am receiving some weekly tips from Dave Haeffner's site and those are in Ruby language. i want to rewrite them in Java. Using Selenium webdriver TestNg Java. Is the element currently enabled or not? Javautil.List; import. Dropdown.ge...
Selenium : Tester In You
http://www.testerinyou.com/2015/07/simulate-pressing-of-multiple-keys.html
Nourish the tester in you. July 20, 2015. Simulate pressing of Multiple Keys (using chord). One of the nice feature in selenium webdriver is it allows us to simulate pressing of multiple keys using a method called "chord". Here is the explanation of chord method:. Simulate pressing many keys at once in a "chord". Takes a sequence of Keys.XXXX or strings; appends each of the values to a string, and adds the chord termination key (Keys.NULL) and returns the resultant string. 2 Type something in FirstName.
Selenium : Tester In You
http://www.testerinyou.com/2015/08/introduction-to-jenkins-continuous.html
Nourish the tester in you. August 13, 2015. Introduction To Jenkins (Continuous Integration Tool). In this post i would like to give some information what ever i know about Jenkins. Frequently asked questions :. What is Continuous Integration? How to set up Jenkins? Jenkins is it only for Developers or can testers also use it? I am a Automation tester how can i use Jenkins? What benefits / advantages i will get after using Jenkins? In this article i am going to answer all the above questions. 1 When it i...
Selenium : Tester In You
http://www.testerinyou.com/2011/05/run-selenium-rc-using-command-prompt.html
Nourish the tester in you. May 3, 2011. Run Selenium RC using Command Prompt. Downloading and Installing Selenium RC:. Go to http:/ seleniumhq.org/download/. Under Selenium Server (formerly the Selenium RC Server) section you can see the selenium server latest version. Click on download, it will be redirected to selenium server download page. Selenium server is a JAR file. Download selenium-server-standalone-2.ob3.jar. Create a Folder selenium in “C” drive. Start and Stop Selenium Server. Browser" "http:...
Selenium : Tester In You
http://www.testerinyou.com/2010/12/selectidentify-selected-and-print.html
Nourish the tester in you. December 8, 2010. Select,identify selected and print values in dropdown. Here is the post which will explain you. How to select a value from drop down. Identify the selected value in drop down. Display the values in drop down. Verifying Element is Present or not here i used xpath to find that. Import com.thoughtworks.selenium.*;. Import org.openqa.selenium.server.*;. Import org.testng.annotations.*;. Public class Dropdownselectvalue {. Public Selenium selenium;. If(selenium....
Selenium : Tester In You
http://www.testerinyou.com/2015/08/check-all-check-boxes-and-verify-status.html
Nourish the tester in you. August 3, 2015. Check all check boxes and verify status of check box. One more example from dave haeffner's weekly tip. Checkboxes, an often used element in web applications. But how do you work with them in your Selenium tests? Intuitively you may reach for a method that has the word 'checked' in it - like. But this doesn't exist in Selenium. So how do you do it? True if the element is currently selected or checked, false otherwise. Javautil.List; import. I = 0; i cBox.siz...
TOTAL LINKS TO THIS WEBSITE
16
DIEHARD Studio
Follow me on these social networks. Also check me out on Deviant Art here: paladinlord.
diehardsurvival.com
Die Hard Survivor -
5 Kick Butt Booby Traps to Arm and Protect a Homestead. How to Successfully Clean a Mattress All a Person Needs is One Item! Video) A Man Finds an Abandoned Shelter by a Highway Exit Ramp. Now Take a Look Inside. Video) How to Prepare Ahead of Time for Roadside Emergency Repairs. Video) Banned in America 10 Things We Can’t Buy Here in the States. 5 Kick Butt Booby Traps to Arm and Protect a Homestead. How to Successfully Clean a Mattress All a Person Needs is One Item! Homesteading / Self Sufficiency.
Home
Passo del Tonale 2014. Alpe di Siusi 2015. Il DIE HARD TEAM nasce il 07 Gennaio 2006, da un? Idea di quattro amici. Tutto ebbe inizio circa tre mesi prima, quando durante un? Abitudine di bere una birra insieme, o anche più di una. Da quei giorni in poi, il passo per creare il DIE HARD TEAM fu molto breve. Ci mettemmo così alla ricerca delle informazioni per realizzare la nostra idea. Poi, in una serata indimenticabile a base di vino e zola, decidemmo il nome, con l? Passo del Tonale 2014.
DieHardTechy
Wednesday, January 31, 2018. Version one useful Restful web service to get the test case detail using test case id. Version one api to get the Test case details using Test Case ID. Http:/ Your Version ONE URI/rest-1.v1/Data/Test? Where, Your Version ONE URI looks like below :. Https:/ www3.v1host.com/DieHardTechy. To call the above api from postman you need to use basic authentication with your version one username and password. Xml version="1.0" encoding="UTF-8"? This is expected result /Attribute.
Pop Culture T-Shirts by DieHardThreads - Shirts That Won't Quit
DieHardThreads - T-shirts that wont quit. Cart - 0 items: $0.00. Go To Hell Carolina,. Kenny Powers and other DieHard fan shirts. WWF Wrestling Panda T-Shirt. Kenny Powers Mermen Jersey-shirt. Jackie Moon Flint Tropics Jersey-shirt. Go To Hell Carolina T-Shirt. Marty Huggins Campaign T-Shirt. Boston "Beat LA" T-Shirt. Go To Hell Carolina Red T-Shirt. All prices USD Search.
Die Hard Three | Think Fast, Look Alive, Blog Hard
Think Fast, Look Alive, Blog Hard. Yesterday was a good day. To me exactly what a bucket list is, but yesterday here in Los Angeles I completed an action item that’ve had for almost 27 years. Taking procrastination to a new level, Jason? Not exactly. It’s more a case of fourteen-year-old me not knowing the commonly understood definition the term action item . From Wikipedia:. Me (finally) visiting Nakatomi Plaza. Will I attempt a Goldeneye-style bungee jump from the top of the Hoover Dam? Well, the truth...
Die Hard Tool, For all Your Tooling Needs
Now in your cart: 0 items. 4 Way Multi V Dies. Hemming Punches and Dies. Your cart is empty.
a little effort!
January 12, 2018. Epsilon;(*´・ω・)з this is an angel. she is here to give you a strawberry 🍓. Tags: ur darn right! September 27, 2017. 10084; Angel or Devil Shoes. Use the code rinihime. For 10% off $30 orders. 9685;‿◕✿). Tags: i love you :). September 22, 2017. I AM GOING TO GET A PROMOTION AND I’M VERY SCARED. August 24, 2017. We buy a water bed. Tags: we could fit one tadpole. And grow her up to be a beautiful frog daughter. August 24, 2017. Ldquo;cah oo hee ih? Cah oo hee uh oi ih ahing? Does falling...
Die Hard: Tic Tac Toe
TEAM MCCLANE { ttt.game.playerOne}. Welcome To Nakatomi Plaza. Tttgame.choose uppercase }. Tttgame.team uppercase }. Come on, John,. 0" class="score-container animated fadeIn". 0" YOU WIN { ttt.game.winner uppercase}. NYPD COP: { ttt.game.mcclaneWins}. TERRORISTS: { ttt.game.hansWins}. TIE GAME: { ttt.game.tieScore}. TOTAL GAMES: { ttt.game.totalGames}. TEAM GRUBER { ttt.game.playerTwo}. TEAM GRUBER { ttt.game.playerTwo}. TEAM MCCLANE { ttt.game.playerOne}.
SOCIAL ENGAGEMENT