0
votes
1answer
22 views

Unable to select popup window/iframe using selenium webdriver in python

I clicked on a link which opens a small window/popup/iframe and the popup window has Xpath: //html/body/div[2] ie. it has no window_id but in firebug the identifier shows the window as a <div ...
1
vote
1answer
47 views

When writing tests with selenium how can you view the resulting HTML?

Take for example the following selenium test in python: import unittest from selenium import webdriver from selenium.webdriver.common.keys import Keys class PythonOrgSearch(unittest.TestCase): ...
0
votes
1answer
248 views

Running Selenium Webdriver with a proxy in Python

I am trying to run a Selenium Webdriver script in Python to do some basic tasks. I can get the robot to function perfectly when running it through the Selenium IDE inteface (ie: when simply getting ...
0
votes
0answers
69 views

Selenium Grid python TypeError: 'module' object is not callable

So i've set up my selenium grid and I have a hub running on the port 4441 with this command: java -jar selenium-server-standalone-2.33.0.jar -role hub -port 4441 Then I got my node running as well ...
0
votes
1answer
99 views

Selenium python formatter test failed

I have used selenium ide to create tests and saved it as python script (webdriver). But when i run this using python. am getting some errors File ...
0
votes
1answer
181 views

Selenium | Python | Mozilla - Automatically start selenium ide plugin in firefox [closed]

I need a python script to automatically start selenium ide in firefox, some script in python and selenium ide should be invisible or hidden, so that user cannot see it. plz help?
0
votes
1answer
195 views

python xpath doesn't seem to work for some elements

I'm trying out Selenium. I've built a quick script using the Selenium IDE. It logs in to a page, opens up a 'Search' window, does a search, and then opens up one of the results. When I run the test ...
0
votes
1answer
403 views

Unable to locate using find element by link

Newbie in testing. I generated a test case using Selenium, and then exported it as a Python script. Now, when I try to run that in terminal, I get following error: raise exception_class(message, ...
0
votes
1answer
587 views

Cannot execute custom Selenium assert function from user-extensions.js file, when running Python RC against Selenium server

I'm trying to export a Selenium script to Python from the Selenium IDE. I am using a few user-extension.js functions though (which are working in Selenium IDE). After exporting to Python, the ...
4
votes
1answer
870 views

export test as python from selenium IDE

I made several tests in selenium IDE and saved it as a test suite in the HTML format which works fine for importing back into selenium IDE. Now however I would like to expand these tests using python ...
1
vote
2answers
1k views

How to convert Selenese (html) to Python programmatically?

How would I convert test cases made by Selenium IDE to Python without exporting every test case by hand? Is there any command line converter for that job? In the end I want to use Selenium RC and ...