| bio | website | lazeryattack.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 1 month |
| seen | Jun 7 at 10:07 | |
| stats | profile views | 10 |
|
May 18 |
awarded | Yearling |
|
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 20 |
answered | Can you trigger a credit card declined message through the PayPal Sandbox interface? |
|
Apr 17 |
revised |
Is Selenium 2 WebDriver JavaDoc API available offline? added 129 characters in body |
|
Apr 17 |
answered | Is Selenium 2 WebDriver JavaDoc API available offline? |
|
Apr 15 |
answered | Is it a good idea to learn Selenium RC alongside Webdriver |
|
Apr 8 |
revised |
What is Selenium's default timeout for page loading? Correcting the answer |
|
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. |
|
Mar 15 |
answered | JMeter test for Cas Log into AJAX application |
|
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 27 |
revised |
How to extract the Safari extension from the base code? added 438 characters in body |
|
Feb 24 |
answered | How to extract the Safari extension from the base code? |
|
Feb 21 |
awarded | Necromancer |
|
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 8 |
answered | Is jQuery faster than CSS/Xpath selectors for IE 8.0 in Selenium1? |
|
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. |
|
Feb 4 |
answered | Selenium WebDriver and Highchart testing |