Open dhowe opened 8 years ago
This occurs after enabling remote debugging and changing the firefox call to:
p = subprocess.Popen([ffbin, '-no-remote', '-P', profile, '-start-debugger-server'],
which starts the debugger service on port 6000
Then I get the following prompt 3 times before seeing the error:
I've now tried FF 3.6 as you suggested, but with this version, I don't even get the prompts or error messages. The program just exits after a few seconds with no output beyond the pid.
$ python firefox_startup.py
12858
dhowe,
Have you run the profile_setup.py script? I get that type of error output (first message) when the extension isn't installed and therefore no server is listening on a port. Run something like:
python profile_setup.py
Example: python profile_setup.py debug 10024
Let me know the output of that (it should be nothing). Then run:
python cube.py debug 10024
to test and let me know what the output is. If it's the same, check to make sure the extension is installed to firefox and enabled. That may be the issue, you may need to manually add the extension (luckily that's easy). We'll go from there.
I know it's been a while. I am trying to understand the crawler after reading the paper, which is really interesting.
I have the same problem as @dhowe. I have followed your instructions and the error is the same. I think the extension is added. When the crawler open Firefox, I check the Addons section in the browser and Firefly is there and enabled. Unfortunately, firefly can't be reached. What else should I do?
I want to check and understand how is the data that the crawler collects from the source code. Do you have any samples of your crawls that you could share? I specifically need to understand how do you get the landing page? According to the paper, you are using a HTTP library. Which one is that? What part of the element or iframe are you using to fetch the landing page?
Please help
Thanks a lot.