You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 13, 2022. It is now read-only.
Currently the pages are imported implicitly into a test using a list of page name strings. This negates the use of code completion when using an IDE.
There should be a way to configure Golem to generate tests (from the GUI) using standard Python import statements. With a setting key to override this (keep current behavior).
As an example, a test with explicit page import would look like this:
from projects.my_project.pages import login_page
from projects.my_project.pages import landing_page
def test(data):
login_page.login('john', '123456')
landing_page.reticulate_spline()
The text was updated successfully, but these errors were encountered:
Currently the pages are imported implicitly into a test using a list of page name strings. This negates the use of code completion when using an IDE.
There should be a way to configure Golem to generate tests (from the GUI) using standard Python import statements. With a setting key to override this (keep current behavior).
As an example, a test with explicit page import would look like this:
The text was updated successfully, but these errors were encountered: