Log In
Support
New Account
This forum
This project's trackers
This project's forums
This project's tasks
This project's releases
This project's documents
This project's news
Software/Group
People
Skill
Advanced search
Home
My Page
Project Tree
Code Snippets
Project Openings
Celerity
Summary
Forums
Tracker
Lists
Tasks
Docs
Surveys
News
SCM
Files
Wiki
Forums
|
Admin
Discussion Forums:
open-discussion
Start New Thread
Nested
Flat
Threaded
Ultimate
Show 25
Show 50
Show 75
Show 100
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?