SST (selenium-simple-test) is a web test framework that uses Python to generate functional browser-based tests.
Questions tagged [sst]
25 questions
0
votes
2 answers
AttributeError: module 'sst' has no attribute 'train_reader'
I am very new to sentiment analysis. Trying to use Stanford Sentiment Treebank(sst) and ran into an error.
from nltk.tree import Tree
import os
import sst
trees = "C:\\Users\m\data\trees"
tree, score =…

Mine
- 831
- 1
- 8
- 27
0
votes
2 answers
How can Cassandra retrieve rows only by using the partition key?
BigTable-like databases store rows sorted by their keys.
Cassandra uses the combination of partition and clustering keys to keep the data distributed and sorted; Yet, you're able to select rows only by having the partition key!
How is Cassandra…

Koen J.
- 1
- 2
0
votes
1 answer
STT Watson Python "Error received: [WinError 10014] The system detected an invalid pointer address in attempting to use a pointer argument in a call"
Recently, I have attempted to create a program that can turn a live audio stream into text and search it for a keyword. I'd then like it to activate another listening function. My current code is as follows (without the second listening…

O.Harris
- 61
- 1
- 6
0
votes
2 answers
Read multiple .nc files into a 3D pandas dataframe python
I would like to read in multiple SST netcdf files and from each file extract the SST data in selected lat, lon range and then store this data in a three dimensional panda dataframe. Closing each netcdf after it has been read to save memory.
I would…

holto1
- 121
- 4
- 10
0
votes
1 answer
AttributeError: 'str' object has no attribute '__name__' Returned
I am looking to simply import a list of information via a CSV and to convert that into a simple action, however I'm getting the following error message:
Traceback (most recent call last):
File…

Shaun S
- 147
- 1
- 9
0
votes
0 answers
AssertionError: Checkbox: u'%' - was not toggled in SST Python
I have a checkbox on my webpage that starts in a state of false and I want to use SST to toggle it to true. However, I keep receiving the AssertionError: Checkbox u'%' - was not toggled, value remains: False. I have used both set_checkbox_value()…

Brenda
- 247
- 1
- 4
- 14
0
votes
1 answer
SST Python not waiting for page to load
I have set set_wait_timeout(60.0) and use the wait_for in my code; however, the code is moving too fast and not allowing for the page to load, even with using add_timestamp=True. Is there any other way to get the code to wait longer for the page to…

Brenda
- 247
- 1
- 4
- 14
0
votes
2 answers
AttributeError: 'NoneType' object has no attribute 'name' while executing in SST Python
THIS OCCURS IN FIREFOX ONLY: In a previous question, I had run into the issue where SST 0.2.4 is not compatible with Selenium 2.44.0. So I downgraded to Selenium 2.43.0. I now have a new issue that I'm confused about. I'm receiving the following…

Brenda
- 247
- 1
- 4
- 14
-1
votes
3 answers
How to fix 'NameError: name 'cartopy' is not defined', in plot about sea surface temperature in python?
I'm really new to python, and I need to plot a data netcdf of sea surface temperature(sst),in python, but it keep giving erro.
I use the same code in another notebook, and it run perfect fine.
###SST CÓDIGO PLOT
import numpy as np …

helena
- 23
- 7
-1
votes
1 answer
Python : except OSError, e:
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:…

Amol Kumbhar
- 329
- 4
- 14