Skip to content
This repository was archived by the owner on Apr 19, 2023. It is now read-only.

Latest commit

 

History

History
34 lines (25 loc) · 2.16 KB

selenium.md

File metadata and controls

34 lines (25 loc) · 2.16 KB

Selenium

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

Running selenium

First

  • In the root directory run yarn install & yarn serve
  • If the port in serve changes from 8080 for any reason, you should change the variable port in tests/frontend selenium/Config.ini to the new value.
  • Add account Twin Mnemonic, Twin With A Node Mnemonic and Stellar Address either in tests/frontend selenium/Config.ini or by exporting TFCHAIN_MNEMONICS, TFCHAIN_NODE_MNEMONICS and STELLAR_ADDRESS.
  • Xvfb might also need to be installed using sudo apt install xvfb.

Second

  • 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

More options to run tests

  • 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