[wtr-general] Re: How can you avoid Omniture recording when using WaTiR to test production website?

2010-09-18 Thread joedio
There is no magic bullet here. Suppressing Web Analytic collection during test execution cycles is not an issue specific to Watir. Any Manual test process or Automated test tool run against a web page that implements Omniture SiteCatalyst, Google Analytics or any other web activity monitoring

[wtr-general] Re: Security Alert

2010-09-18 Thread Darryl Brown
Hello Sivam, What browser action is causing the security alert to appear ? There are two possible solutions: 1) use click_no_wait on the link, button, etc. that is causing the popup right before calling your method.(this will cause ruby to 'wait') 2) Put your method in a thread and call it

[wtr-general] Re: Speed: IE vs FF

2010-09-18 Thread marc
I've notice recently that my tests in IE were running a lot slower than Firefox using watir-webdriver. I was able to track it down to verifying text on a page. For example: verify(browser.div(:id=some_div).text.include?(some text)) would take about 5 to 10 times as long in IE compared to

Re: [wtr-general] Re: Speed: IE vs FF

2010-09-18 Thread Jari Bakken
On Sat, Sep 18, 2010 at 4:04 PM, marc marcbe...@gmail.com wrote: I've notice recently that my tests in IE were running a lot slower than Firefox using watir-webdriver. I was able to track it down to verifying text on a page. For example: verify(browser.div(:id=some_div).text.include?(some