Pylenium and Pycharm #261
dhurtado07
started this conversation in
General
Replies: 1 comment 2 replies
-
It doesn't see that requests is installed even though installing pylenium includes that automatically. That suggests either an error in installation or configuration. Can you share more of your code, project structure, and how you're using your virtual environment? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a problem when I want to run the following test from pycharm
pip install pyleniumio
pylenium init
def test_google_search (py): py.visit('https://www.google.com') py.get("[name='q']").type('puppies') py.get("[name='btnK']").submit() assert py.should().contain_title('puppies')
Beta Was this translation helpful? Give feedback.
All reactions