Tagged Questions
3
votes
0answers
74 views
Print dom when selenium misses an element I see
How to find what selenium see in a dom where it misses an image I see on screen?
Context: I have a Selenium python test
browser.wait_to_find_visible_element(By.ID, 'image')
that sometimes can't ...
3
votes
0answers
247 views
Python selenium webdriver tests causing “serious error” when run in large batches on windows XP
We run a bunch of Python test scripts on a group of test stations. The test scripts interface with hardware units on these test stations, so we're stuck running one test script at a time per station ...
2
votes
0answers
56 views
Disabling Javascript after page has been rendered in Selenium Webdriver
I'm using Python. I've seen How can I disable javascript in firefox with selenium? which says to create a profile then load the driver with that profile. But I want to disable Javascript after a page ...
1
vote
0answers
171 views
post to facebook wall using selenium and python
I am using firefox 18.0 and selenium webdriver with python(2.7) bindings on windows 7. Using all this I have been able to log in to facebook, go to an user's page , send text to the wall post field. ...
1
vote
0answers
219 views
selenium htmlunitwithjs in python error
Ok so i'm trying to parse a website using selenium. I'll be doing it in python and it works fine when I use
firefox browser. I can surf around the website and parse it just fine.
page = ...
1
vote
0answers
98 views
Webdriver Test Stalls When Twitter Login Window Pops Up
I am attempting to run a simple test that navigates to a site & attempts to register with the site using twitter. For some reason the test just stalls when I click on the twitter button and the ...
0
votes
0answers
30 views
Processes not starting other processes when it's not me starting them?
So I've got a python script, running Selenium and Firefoxdriver. Everytime I've tested it via command line, it's gone off without a hitch. Boots up firefox windows, no problems.
Then I built a page ...
0
votes
0answers
36 views
Androiddriver Python Bindings httplib
I was successfully able to setup androiddriver on an emulator, but am struggling to get through an httplib error. Here are the steps I took after setting up the android sdk on mac.
1. ./adb devices, ...
0
votes
0answers
75 views
Call a Javascript function in Python - Selenium
I have this HTML code I'm proccesing/scrapping with a python script:
<a href="javascript:VerMapa('AVDA. DE AMERICA, 2 -33880 POLA DE ALLANDE','RODRIGUEZ-PELAEZ PEÑA, ANA MARIA','AVDA. DE AMERICA, ...
0
votes
0answers
95 views
how to override default set of chrome command line switches in selenium
By default, chrome will be run with this command line:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
--disable-hang-monitor
--disable-prompt-on-repost
--dom-automation
...
0
votes
0answers
41 views
Cannot find email and password fields with Selenium webdriver in Python
I'm using Selenium webdriver + lettuce to run automated QA tests (written in Python) for a website. Right now I'm testing a sign up feature and I'm able to properly find and fill out the fields for ...
0
votes
0answers
27 views
Python Selenium Webdriver Tasks without Java Server
I'm trying to do fairly simple things with Selenium Python Firefox webdriver (ie, click on a div), but I'm finding it difficult to figure out what is possible in this setting, versus what I will need ...
0
votes
0answers
260 views
Selenium Drag and Drop test in different iFrames python
I am having an issue with the Drag and Drop function on Selenium. I write my test in Selenium IDE and the Drag and Drop works just fine. When I create my test on python is when the issue pops up.
I ...
0
votes
0answers
44 views
Is there a possibility to add a progress bar to splinters browser code?
I have a code which downloads lots of webpages (it takes a screenshoots of them, to be clear). Is there any way to add to my application a progress bar? I use wx, but I would like to know if there is ...
0
votes
0answers
229 views
Selenium Downloading Files using Remote Web Driver
I'm using python and the remote web driver in selenium to try to generate and download reports (xml files) from a Google Mini. I'm generating the files just fine, and am able to select the Export ...