I'm currently developing a website with the SST - Web Test Framework (i'm very beginner) but I have a problem with python
I used this Link: https://pypi.python.org/pypi/sst/0.2.2
I m using - Python 3.6.4 and SST - Web Test Framework- Latest Version: 0.2.4
My Code is:
from sst.actions import *
go_to('http://www.google.com/')
Error is:
C:\Python\scrapy-master\Projects>python proxyhar.py
Traceback (most recent call last):
File "proxyhar.py", line 1, in <module>
from sst.actions import *
File "C:\Python\lib\site-packages\sst\actions.py", line 104, in <module>
class EndTest(StandardError):
NameError: name 'StandardError' is not defined
Anyone suggest me how to resolve this.
Thank you
go_to('http://www.google.com/')
, right? – BackfieldStandardError
class, but you must be using Python3. You could create virtual environment with Python2 and install this module throughpip
there if you want to keep using it. – Backfield