Personally, I think a better name for `BaseDriver` class would be `BasePage`. Thank you for your detailed explanation.
@bikashshi5083 жыл бұрын
Excellent explanation of Concepts
@shanukhan-ud9gg3 жыл бұрын
Thanks for uploading new video, could you please increase the frequency of videos for this course, because i watched the #49 video on last week and now it is very difficult to fill the gap of 1 week in implementing new video.
@softwaretestingmentor3 жыл бұрын
Hi Shanu, sure, I can understand. I will try to be more consistent from now. Thanks
@prashantmorade41902 жыл бұрын
good job creating a series
@Memories2cherish2013 Жыл бұрын
Hello Manish, Thanks for the wonderful Tutorials. I have learnt lot of python, pytest concepts from you. Tutorial #49 and #50, felt like it was little fast especially after creating pages and switching between tab to tab in PyCharm is little confusing. Unable to follow where which parameter is passed and being called.
@kimalcoseba21993 жыл бұрын
Hello Manish (@Software Testing Mentor), @ 00:48, can you provide the remaining codes of lines 27 and 33 (the javascripts to be executed)? What's the rest of the code after 'return pageLength' Thank you in advance and as always, great job on these videos. Hope to hear from you sooner rather than later :D
@NicolasChanCSY2 жыл бұрын
The following is my best guess of the code being used: ```python pageLength = self.driver.execute_script( "window.scrollTo(0, document.body.scrollHeight); var pageLength=document.body.scrollHeight; return pageLength;" ) ``` ------------------ Actually, I think the code can be simplified. ```python last_height, page_height = -1, 0 while page_height != last_height: last_height = page_height page_height = self.driver.execute_script( "window.scrollTo(0, document.body.scrollHeight);" "return document.body.scrollHeight;" # Python would auto concatenate these two strings. ) sleep(3) ``` Hope this helps :) Reference: stackoverflow.com/a/27760083
@elisabeth_rafael Жыл бұрын
Yes please! I need it too!
@mohsindkp32043 жыл бұрын
I want to learn selenium with python 😊
@AryanBhatt-e1d3 ай бұрын
Right
@roronoazoro9759 Жыл бұрын
It would be great if the scrolling down a page js code could be explained properly. I can't even use the code in the videos to practice or implement it.
@vinayakjigajinni9977 Жыл бұрын
Hi Manish, The same code when I execute in my IDE it is executing really fast even after adding the sleep times and due to this the in the UI the entries are not happening properly. How can I fix this any help?
@prasadbhagwat19873 жыл бұрын
Great sir, Can you plz code on github ?
@mrbumblee83186 ай бұрын
how can I get this codebase
@shubhamsrivastava97202 жыл бұрын
Hi Sir, By the time it clicks on search flight I get an error of Access denied on this server. Any idea what is this and how to proceed further? at the same time when I do it manually, it is working fine.
@rajkrtmg2 жыл бұрын
did u get the solution. If yes plz let me know.
@Soniasadiq-i7o Жыл бұрын
unable to understand about the wait, scroll and filter. These are too fast.