Re: [Tutor] selenium programs stopped working

2013-06-04 Thread Benjamin Fishbein
I think you're right: Firefox may have automatically updated itself. I checked and I was using Selenium 2.29 The most recent is 2.33 So I downloaded the newest one and did pip install -U selenium in terminal but I got this: Installing collected packages: selenium Found existing installation: se

Re: [Tutor] selenium programs stopped working

2013-06-04 Thread Walter Prins
Hi, On 4 June 2013 02:27, Benjamin Fishbein wrote: > WebDriverException: Message: "Can't load the profile. Profile Dir: > /var/folders/vm/8th3csp91qb47xbhqhb4gcmhgn/T/tmpPeqacA Firefox output: > *** LOG addons.xpi: startup\n*** LOG addons.xpi: Skipping unavailable > install location app-syst

Re: [Tutor] selenium programs stopped working

2013-06-03 Thread Oscar Benjamin
Please don't top-post on this list (and many others). Inline or bottom-posted responses are usually preferred like the way that I've rearranged your message below. On 4 June 2013 02:27, Benjamin Fishbein wrote: > On Jun 3, 2013, at 8:08 PM, Benjamin Fishbein wrote: > >> I'm using selenium webdriv

Re: [Tutor] selenium programs stopped working

2013-06-03 Thread Benjamin Fishbein
btw I'm on a Mac running 10.7. And after a couple minutes of not loading any webpage, the program gives me this error: Traceback (most recent call last): File "/Users/bfishbein/Documents/s_buy2.py", line 7, in driver = webdriver.Firefox() File "/Library/Python/2.7/site-packages/selenium

[Tutor] selenium programs stopped working

2013-06-03 Thread Benjamin Fishbein
I'm using selenium webdriver with python 2.7. I have some programs I wrote with it and they've been working properly for some months. But today I tried to write a new program with the selenium module. from selenium import webdriver from selenium.webdriver.common.keys import Keys driver = webdriv