Where are pytest fixtures?

Where are pytest fixtures?

The fixture name must be specified as an input parameter in the tests to access the fixture function. Pytest will perceive the fixture name as an input parameter while the test is running. The fixture function is then called, and the result is saved in the input parameter, which the test can use.

Pytest - Fixtures.