Can anyone help with using Selenium-RC + Grails? I have used Selenium with Java but had no problem writing the code and launching the browser. But is the source code of my project required when i need to use Selenium-RC with Grails?
Any links to resources to learn will be very helpful.
dzieciou
10.5k9 gold badges49 silver badges102 bronze badges
asked Feb 7, 2012 at 10:02
-
3I am not sure I understand your question. Did something happen that suggested to you that using Selenium with grails might require accessing your web application's source code?user246– user2462012年03月08日 17:04:33 +00:00Commented Mar 8, 2012 at 17:04
1 Answer 1
answered Feb 7, 2012 at 14:03
-
i want to automate scenario so the regression becomes less time consuming. so my biggest question i am facing now is.. can we do blackbox testing using selenium-rc using grails?? or it is only used to do whitebox testingKanishka Choudhury– Kanishka Choudhury2012年02月07日 14:16:28 +00:00Commented Feb 7, 2012 at 14:16
-
6You cannot do whitebox testing with Selenium. Selenium drives a browser to interact with a web page, is has no concept of the code layer behind the website (e.g. PHP, ASP, Ruby, etc).Ardesco– Ardesco2012年02月07日 14:22:17 +00:00Commented Feb 7, 2012 at 14:22
-
@Ardesco, it might however be aware of JavaScript code on browser-side, correct?dzieciou– dzieciou2013年08月31日 10:08:53 +00:00Commented Aug 31, 2013 at 10:08
-
2Depends on your definition of aware. You can add hooks into your JavaScript code that Selenium can use and you can use a JavascriptExecutor to use these hooks. You can also use a JavaScriptExecutor to run your own JavaScript (Basically exactly what an end user could do with a JavaScript console).Ardesco– Ardesco2013年08月31日 12:10:38 +00:00Commented Aug 31, 2013 at 12:10
Explore related questions
See similar questions with these tags.
default