Forums | Admin

Discussion Forums: open-discussion

Start New Thread Start New Thread

 

By: Piotr Sarnacki
RE: Disabling javascript in celerity [ reply ]  
2009-06-15 10:52
Thanks, that will help - I will enable javascript for scenarios tagged js :) It will prevent testing javascript actions instead of regular ones.

By: Jari Bakken
RE: Disabling javascript in celerity [ reply ]  
2009-06-15 10:40
At the moment you'll have to do this to turn off javascript:

browser = Celerity::Browser.new
browser.webclient.setJavaScriptEnabled(false)

By: Jari Bakken
RE: Disabling javascript in celerity [ reply ]  
2009-06-15 10:24
At the moment you'll have to do this to turn of javascript:

browser = Celerity::Browser.new
browser.webclient.setJavaScriptEnabled(false)

By: Piotr Sarnacki
Disabling javascript in celerity [ reply ]  
2009-06-14 19:19
Hi,

I use celerity with culerity and cucumber and it's great but I would like to run my tests without javascript enabled. I use ubobtrusive javascript mainly and I want to check if it works without javascript. Is there any way to do that?