Install the recommended version of the pip package listed below for a stable run, or you can just install python 3 and use pip install -r requirements.txt
in frontend_selenium directory.
Prerequisites | version |
---|---|
Python | 3.10.4 |
pytest | 7.1.2 |
requests | 2.28.1 |
selenium | 4.4.3 |
PyVirtualDisplay | 3.0 |
webdriver-manager | 3.8.3 |
- In the root directory run
yarn install & yarn serve
- If the port in serve changes from
8080
for any reason, you should change the variableport
intests/frontend selenium/Config.ini
to the new value. - Add account
Twin Mnemonic
,Twin With A Node Mnemonic
andStellar Address
either intests/frontend selenium/Config.ini
or by exportingTFCHAIN_MNEMONICS
,TFCHAIN_NODE_MNEMONICS
andSTELLAR_ADDRESS
. - Xvfb might also need to be installed using
sudo apt install xvfb
.
- You need to leave the server running and open new terminal.
- Change direcotry to frontend selenium through the command line using
cd tests/frontend_selenium
- You can run selenium with pytest through the command line using
python3 -m pytest -v
- You can also run single test file through the command line using
python3 -m pytest tests/test_file.py
- You can also run specific test case through the command line using
python3 -m pytest tests/test_file.py::test_func
- You can also run collection of test cases through the command line using
python3 -m pytest -v -k 'test_func or test_func'
- You can also run all the tests and get an HTML report using pytest-html package through the command line using
python3 -m pytest -v --html=report.html