778 reputation
46
bio website lazeryattack.com
location
age
visits member for 2 years, 1 month
seen Jun 7 at 10:07
stats profile views 10

Apr
22
comment Advance commands of Selenium are not working in IE browser
Some more information would be helpful. Which language bindings? Can you show us the code that is not working for you?
Apr
22
comment Advance commands of Selenium are not working in IE browser
-1 for suggesting the OP uses a drastically out of date version of Selenium that doesn't even use the IEDriverServer.exe. If you are still using 2.14 you really shouldn't be.
Apr
8
comment What is Selenium's default timeout for page loading?
Your right, I've conflated implicitly wait with page load timeout, time to update the answer.
Feb
27
comment How to extract the Safari extension from the base code?
Positive, I've added a link to the SafariDriver wiki entry and pulled out the relevant quote.
Feb
8
comment Selenium RC is out dated or still in the market after selenium 2.5 release?
Why is it OutDated? Well it's deprecated, in maintenance mode (So nobody is actively working on it) and the current plan is to remove it from the codebase in Selenium 3.0. Generally Selenium RC is dead, Long live Selenium
Feb
4
comment WebDriverWait or ImplicitlyWait or ExplictlyWait nothing works
2 seconds may not be long enough which would result in the Element not found exceptions. The stale element exceptions imply that the element you are looking for is changing. You should wait for the element to become stale before waiting for it to appear again.
Feb
4
comment WebDriverWait or ImplicitlyWait or ExplictlyWait nothing works
Sleeps are bad because they add to the test time for no good reason. They are different on different machines, your big beefy i7 may only have to wait 2 seconds whilst an old P100 running the same site may have to wait 15 seconds. Thread.sleep is the lazy solution used by people who can't be bothered to do it properly/don't understand how to do it properly.
Feb
4
comment Testing IE 7, 8, 9. Is the IE9 compatability mode sufficient?
I've used IETester quite extensively in the past and things that worked in IETester didn't always work in native versions of IE6/IE7. use a virtual machine instead.
Dec
1
comment Solving “SeleneseTestCase is deprecated” issue
The old Selenium RC API is deprecated now. You should really be using the WebDriver API have a look at code.google.com/p/selenium/downloads/list
May
16
comment What Are Some Unobvious Differences Between Testing a Web Application and a Desktop Application?
+1 for mentioning www.w3,org, most people seem to ignore it and don't bother to validate thier HTML which IMHO is the first smoke test you should ever perform.
May
14
comment How to configure selenium Web driver into Eclipse
This is a meaningless question, you don't integrate code into a IDE, you write code with an IDE.
May
3
comment Capture screen during exploratory testing
How To Use Fraps To Record Desktop - youtube.com/watch?v=myw4H6F0-Q4
Apr
30
comment selenium runs the same method more then once
You'll need to show code to get a proper answer. I would guess that the before class that is triggering for each test opens the browse and you don't have an after class that shuts down the browser.
Apr
11
comment Custom error testing: How to find status code after page load/button click?
Need more information to work out what the query is if it's not a duplicate of one of the above.
Apr
11
comment Custom error testing: How to find status code after page load/button click?
Or also sqa.stackexchange.com/questions/1276/…
Apr
11
comment Custom error testing: How to find status code after page load/button click?
Possible duplicate of stackoverflow.com/questions/6840817/…
Apr
6
comment How to determine whether a WebElement is a child of another WebElement?
WebElement's do not keep thier locator information once created and have no concept of parent's or children (This is why you occasionaly get StaleElementException's when navigating back and forth). You would have to extend the WebElement class to add in a reference to a parent element to acheive this.
Apr
4
comment Do Academic Researchers in Automated Software Testing Believe All Testing Can Be 100% Automated?
The whole point of a CAPTCHA is to prevent automation, I fail to see how it's a bad example...
Apr
4
comment Do Academic Researchers in Automated Software Testing Believe All Testing Can Be 100% Automated?
My point is that by default a CAPTCHA will kill automated testing. Yes you can work around the problems it presents by being clever and doing one of the options suggested above, but I'll guarantee I can kill your 100% automated dream with a CAPTCHA if I don't give you a way to bypass it.
Apr
4
comment Do Academic Researchers in Automated Software Testing Believe All Testing Can Be 100% Automated?
To automate the testing of a CAPTCHA you need to do one of the following: 1 - Turn it off; 2 - Fix the response to a static answer to enable you to enter it correctly; 3 - Supply the answer to the CAPTCHA to your test (e.g. hidden div with the correct answer). If you managed to automate by reading the picture the CAPTCHA is not fit for purpose and should have failed your testing.