ScreenPyHQ / screenpy

Screenplay pattern base for Python automated UI test suites.
MIT License
27 stars 3 forks source link

documentation for deprecations in 4.0.0 update #125

Open bandophahita opened 7 months ago

bandophahita commented 7 months ago

Reading through the deprecation documentation for 4.0.0 it states the following:

Upgrading to this version will see you first install ScreenPy slightly differently. To get the same features, your install will change like this:

pip install screenpy

⇩ to

pip install screenpy[selenium,requests,allure]

I think it's worth pointing out that users could also install the sub-packages they want directly from pip, since they automatically include screenpy as a dependency.

pip install screenpy_selenium
pip install screenpy_requests