The selenium tag has no usage guidance.
0
votes
0answers
27 views
Debian No D-BUS running
I have a python script which run firefox on Debian
from selenium import webdriver
url = '...'
driver = webdriver.Firefox()
driver.get(url)
When I run say this
Does anyone have any idea?
0
votes
1answer
236 views
FreeBSD Selenium PhantomJS - Can not connect to the Service
i am stuck to run PhantomJS with selenium. So i have prepared a FreeBSD Jail and installed phantomjs via ports.
whereis phantomjs
> phantomjs: /usr/local/bin/phantomjs /usr/ports/lang/phantomjs
/...
0
votes
1answer
149 views
Installing Firefox on EC2 using Lambda Linux Project
I'm trying to set up a nodejs+selenium server on ec2.
I got node installed and working and I tried to set up Firefox using the tutorial here:
https://lambda-linux.io/blog/2015/01/28/announcing-...
0
votes
0answers
184 views
Install previous version of iceweasel (raspberry Pi)
I am trying to get selenium (python) working on the raspberry pi.
I am using Iceweasel for lack of another browser, but there is some bug that I am not sure about in the current version that stops ...
10
votes
4answers
5k views
Have Bash script wait for status message before continuing
I'm firing up Selenium server with a bash script and as you can see from the timestamps on the log below, it takes about 32 seconds for the thing to fully come online:
Feb 28, 2012 10:19:02 PM org....
8
votes
2answers
707 views
Are there any good tools besides SeleniumRC that can fetch webpages including content post-painted by JavaScript?
One major shortcoming of curl is that more and more wepages are having their main piece of content painted by a JavaScript AJAX response that occurs after the initial HTTP response. curl never picks ...