Very clear concepts and full of knowledge. I was doing this to import data from DEV and QA servers and compare of count of reports etc… and passing the table list as parametrised fixtures, facing challenges to pass the parameter to DB and get results. Any thoughts please?
@HariKrishnan-cs6cr Жыл бұрын
With latest update, fixture's scope has be set to "function" instead of "class" for parameterization to work. If scope is set for "class", then your driver wont quit and wont trigger the next test.
@prateekkotangale9202 жыл бұрын
Thank you for the great video!!!
@kundanlal4199 Жыл бұрын
Please also provide some session on advance Pytest & Fixture
@rameshbabu21043 жыл бұрын
Very clear Naveen
@gtam22943 жыл бұрын
On using self.driver. why methods like find_elements(), title(), find_element_by_, switch_to(), window_handles() and rest are not auto-populating? Its frustrating to write the whole thing when they don't auto populate. Same works without using fixtures and but with conftest and with request.cls.driver = web_driver, they just don't show up. Naveen, do you know why its happening? I am sure you might have also noticed it as you were typing all the methods or either copying from other .py files?
@shankubisai13703 жыл бұрын
I think that is a bug with pycharm.I too noticed it.If its not a bug and if i can figure out how to do that I would let u know.
@iMadeThisThat3 жыл бұрын
@@shankubisai1370 🙏🏻 let me know if you find a solution to it. After all we’re IDE for a purpose! Otherwise why use Notepad and type all the code lines!!!
@anil261002 жыл бұрын
Hi naveen, How to validate the test cases for this scenario. And y did you use that Class?
@soumyajitsatpathy36272 жыл бұрын
Nice series ❤
@sabataranum51282 жыл бұрын
Hi Naveen thank you for the great work your doing, can you please upload a video to integrate selenium python with Azure DevOps Testcases
@spotnuru836 ай бұрын
thank you for the video but i am unable to parameterize in the test it self, i am getting error inderect fixture does not exist kind
@spotnuru836 ай бұрын
i referred pytest documentation, we have to give as "num,result" and not "num","result"
@spotnuru836 ай бұрын
Looks like you have changed it at the later part of the video for class scope fixtures
@automationneemo4 жыл бұрын
Hi Naveen, Why don't I get any auto suggestion from Pycharm, when i do self.driver. something in test method? Is there any fix for the above issue?
@Creatingnewlife176Ай бұрын
you need to use self.driver.
@ishan237863 жыл бұрын
I am not able to get past the 5 second hubspot window screen... My code is fine and browsers are launching...But element not found error I'm getting because its unable to go past the 5 second login window..How to resolve?? Please help....I tried Explicit waits but still no resolution...its pinging refresh again and again...
@shankubisai13703 жыл бұрын
Even happens with me as as well. I think the website has implemented some mechanism to stop the automation.
@sambeetburma61084 жыл бұрын
Hey Naveen guruji , why u r creating base class . without creating base class isn't it possible
@trinetras19493 жыл бұрын
Nice content I feel this can be explained within less than 12 minutes.
@kalyanchakri50994 жыл бұрын
Hi Naveen, please help me how to do Parameterization from reading excel data.
@SingaporeChinnodu4 жыл бұрын
Following
@m4monzter3 жыл бұрын
Fixtures Parameterization Vs Test Parameterization ?!?