sst-remote doesn't handle count_only
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
selenium-simple-test |
In Progress
|
Undecided
|
Leo Arias |
Bug Description
When I'm trying to run a test through selenium RC, I'm gettting this error:
(env)root@
Traceback (most recent call last):
File "/home/
load_
File "/home/
count_
AttributeError: Values instance has no attribute 'count_only'
I also commented out the count_only line in remote.py. I got this error instead:
(env)root@
Tests running...
DEBUG:
DEBUG:
DEBUG:
DEBUG:
sst.ssttest ... ERROR (0.002 secs)
=======
ERROR: sst.ssttest
-------
Traceback (most recent call last):
File "/home/
super(
File "/home/
self.
File "/home/
logger.
AttributeError: 'NoneType' object has no attribute 'name'
Ran 1 test in 0.002s
FAILED (failures=1)
I have the selenium server running and the test runs with sst-run. What might be the problem?
Related branches
- Alexander Kamyanskiy (community): Approve
- Canonical ISD QA Team: Pending requested
-
Diff: 46 lines (+42/-0)1 file modifiedsrc/sst/tests/test_remote_script.py (+42/-0)
Changed in selenium-simple-test: | |
status: | New → Triaged |
The count_only error it's because the attribute name changed, but this was not updated properly.
I'm not having the other problem.