├── CF_TC.py ├── LICENSE ├── Pipfile ├── README.md ├── chromedriver ├── main.py └── requirements.txt /CF_TC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvcodes/cf-testcases/HEAD/CF_TC.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvcodes/cf-testcases/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvcodes/cf-testcases/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvcodes/cf-testcases/HEAD/README.md -------------------------------------------------------------------------------- /chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvcodes/cf-testcases/HEAD/chromedriver -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvcodes/cf-testcases/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Requests==2.31.0 2 | selenium==4.13.0 3 | rich 4 | --------------------------------------------------------------------------------