Hi Naveen, can you please alsso make a video on how to pass jenkins parameters to pytest fixtures ?
@Marwan4Sultan3 жыл бұрын
Naveen, I am seeing that when inheriting the init_driver fixture into another class, you do not get the selenium bindings i.e. "self.driver.find_element_by_id" . Is there a way to make the webdriver global and to inherit it through the entire project? Thank you.
@justanything11593 жыл бұрын
I am a new bee to automation testing, I do have same question any information on this is appreciated.
@kasunherath2173 Жыл бұрын
How to access fixtures in conftest if its moved outside of test directory? probably to main
@kamalnayan7696 Жыл бұрын
ANYONE please tell me.. While I am using self.driver in .py file except confttest.py ,,, selenium methods are not getting autocomplete. It's really frustrating .
@ashishsahu80652 жыл бұрын
Hi sir , when i am executing the same test on parallel mode it is opening only in chrom and for other browser like edge it is showing an error as ERROR pytestFrameDemo1/test_google_parameterized_fixture.py::Test_Google::test_google_title[Edge] - TypeError: Level not an integer or a valid string: None. please help me on this. whereas i have installed the plugin for parallel mode. but if run this on normal then it is opening in both browser sequencelly.
@maanvithavaishnavi50933 жыл бұрын
How to save response globally in python ?
@sambeetburma61084 жыл бұрын
how to run in parallel mode with out giving command in CLI
@sugat04 жыл бұрын
Go to Run > Edit Configuration > Python tests. Select the Python Test. Check the 'Allow Parallel Run' checkbox. In additional arguments, enter -n 2. Save the configuration and run the test.