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

Is there anyway by which I can automate the following steps in Selenium-rc

  1. open a page
  2. click on bookmarklet in browser toolbar
  3. fill up data in the form loaded into the page by said bookmarklet.

If the bookmarklet is not accessible as it is part of the browser/bookmark toolbar, is there a way in which I can inject the javascript into the page and have it execute?

share|improve this question

1 Answer

up vote 3 down vote accepted

You are 99% there! You're right, you can't actually click the bookmarklet, but you can inject the same JavaScript in to the page. Simply use the getEval() command to evaluate the JavaScript.

share|improve this answer
Thanks, the RobotFramework-SeleniumLibrary equivalent is "Execute Javascript" – molicule Jun 25 '09 at 22:52

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.