Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to see the source code for Selenium standard commands? If so, where can I download it? I'm trying to debug a Selenium clickAndWait command issue (link below). I want to see what Selenium is actually doing in this command to troubleshoot the issue. I can probably get around this issue, but I'd have to change the UI of the application a bit. I've posted this as a Selenium issues on their website, but haven't heard back yet.

Outstanding issue:
Selenium IDE gets stuck on clickAndWait command in popup window

share|improve this question
1  
Have you looked @ seleniumhq.org/download/source.html? – Ben.Vineyard Aug 23 '11 at 21:16
I'm so blind. :-) – MacGyver Aug 23 '11 at 21:41
Migrated the link to an answer. Please accept if it helps. – Ben.Vineyard Aug 23 '11 at 21:46

2 Answers

You want doClick() in selenium-api.js and clickElement() in selenium-browserbot.js. The Selenium code has moved around a lot between 1.x and 2.x, so it depends on what release you're talking about, but in the current codebase, those files are selenium-api.js and selenium-browserbot.js. Note also that selenium-browserbot.js contains the core BrowserBot class and several subclasses for specific browsers (e.g., IEBrowserBot).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.