Thank you, I just learned it all in a few days. The video is very easy to understand. If possible, I'm waiting for a video about POM. =)))
@TestingFunda5 ай бұрын
Right now, I started with Python learning. Right after, I will create on POM and frameworks
@SatoOnAir3 ай бұрын
Tôi vừa học video hướng dẫn của mấy năm trước nguyên tuần, xong ờ giờ mới thấy youtube ông này làm video dạy selenium 2 tháng trước. Mà lại còn là phiên bản mới luôn k cần service hay download driver nhì nhằng =)) đỉnh vl
Very nice your way of explaining everything in detail or in fast manner perfect
@TestingFundaАй бұрын
@@020hamza2 that's great. Happy learning 👍
@tuannguyenanh6522 күн бұрын
thank you for this great course. if possible can you share your demo website link so we can practice together.
@TestingFunda21 күн бұрын
Thanks. Which Practise site you are referring?
@KnownStranger-g4h4 күн бұрын
I am using vs code editor in ubunto ... Is this video work for me???
@TestingFunda4 сағат бұрын
Yes, you can learn Selenium with Python using the VS Code editor on Ubuntu. VS Code is a versatile and powerful code editor, and Ubuntu provides an excellent environment for Python development.
@SallyFaith-qk4scАй бұрын
thank u so much for this
@veenaverma9055 ай бұрын
Good
@TestingFunda5 ай бұрын
Thanks
@Dineshtech-xr8id2 ай бұрын
Thankyou , this course is awesome and one of the best course to learn selenium using python
@TestingFunda2 ай бұрын
Thank you so much for your kind words! I'm thrilled to hear that you're enjoying the course and finding it valuable for learning Selenium with Python. Your feedback means a lot!
@jamarparker2760Ай бұрын
Do you know why my selenium actions aren’t yellow “ex: driver. Forward or time.sleep”
@TestingFunda25 күн бұрын
I am using a theme thats why
@zik0v3 ай бұрын
1:00:00
@umebashi64333 ай бұрын
Really very nice
@TestingFunda3 ай бұрын
Thanks happy learning
@spycarnage60193 ай бұрын
Hi sir can you pls tell me that how can I resolve the error of no such element exception but I have rewrite the code several time and it runs in the very first after very next secind when I run it again it shows me the above mentioned error , anad I was creating web scraping from Selenium on vs code by python
@spycarnage60193 ай бұрын
Also wanted to tell you that I use the vedio of code with Harry for above making project and did the same exactly but I face the same error even my code was right
@TestingFunda3 ай бұрын
@@spycarnage6019 Use Selenium implicit or explicit waits
@Raaj-vs4ceАй бұрын
how to exit from full screen window to normal browser window
@TestingFundaАй бұрын
Use driver.set_window and set your desired screen size. Here is an example: driver.set_window_size(1024, 768)
@kartikssharma1215 ай бұрын
iss course ko complete krne ke baad kya krna chaiye?
@TestingFunda5 ай бұрын
Practice
@RaniKrishna-s6o3 ай бұрын
What's the jobe role where we use python selenium
@TestingFunda3 ай бұрын
@@RaniKrishna-s6o Automation Testing
@biswanthpinnika71492 ай бұрын
why i am getting login as failed exp_title = driver.find_element(By.CSS_SELECTOR, ".product_label") act_title = "Products" if act_title == exp_title: print('login is passed') else: print('login is failed') in this condition
@TestingFunda2 ай бұрын
Can you please share more details?
@gayatridhamdhere56193 ай бұрын
my google chrome closes immdeiately after being launched by selenium. plz help
@TestingFunda3 ай бұрын
kzbin.info/www/bejne/n5u3Y6aCi8mhhq8
@biswanthpinnika71492 ай бұрын
import time before closing write time.sleep(10)
@IRSHADBEGUM-d1b2 ай бұрын
browser.get("link") is throwing an error so i'm using driver.get.................. is it correct?
@TestingFunda2 ай бұрын
Can you please complete code
@divyaagrawal75302 ай бұрын
Chrome is crashing, i.e. getting closed automatically once the execution is completed.
@TestingFunda2 ай бұрын
Can you please share more details?
@divyaagrawal75302 ай бұрын
Once the script is executed, browser gets closed automatically. I did not write browser.quit or close still the session is terminated immediately after execution.
@ivanyosifov26292 ай бұрын
@@divyaagrawal7530 To prevent Chrome from closing add this code options = webdriver.ChromeOptions() options.add_experimental_option("detach", True) driver = webdriver.Chrome(options=options)
@divyaagrawal75302 ай бұрын
@TestingFunda please share the steps to resolve this issue as I have to add time.sleep() function to keep browser open for some time.
@ivanyosifov26292 ай бұрын
@@divyaagrawal7530 Use this code to keep browser open options = webdriver.ChromeOptions() options.add_experimental_option("detach", True) driver = webdriver.Chrome(options = options)
@tholeduc64995 ай бұрын
Anyone please update the timeline. Thanks
@TestingFunda5 ай бұрын
I will do it soon. Sorry for the inconvenience
@TestingFunda4 ай бұрын
Timeline updated
@biswanthpinnika71492 ай бұрын
Why I am getting these error for broken links : File "E:\Automation_testing\day1\brokenlinks.py", line 14, in print(f"total no of links present: {len(all_links)}") ^^^^^^^^^^^^^^ TypeError: object of type 'WebElement' has no len() can you help me with these.
@TestingFunda2 ай бұрын
Can you please share your code?
@biswanthpinnika71492 ай бұрын
@@TestingFunda I get it sir thank you for your reply
@TestingFunda2 ай бұрын
@@biswanthpinnika7149 Thats Great
@Humsabdosthai3 ай бұрын
can you please share the code for this or the github link
@TestingFunda3 ай бұрын
I haven't uploaded the code on github till now but will upload soon and share the link
@manjulacn32895 ай бұрын
Traceback (most recent call last): File "C:\Users\HOME\PycharmProjects\pythonProject\day1\firstProject.py", line 31, in driver.find_element(By.XPATH("#APjFqb")) ^^^^^^^^^^^^^^^^^^^ TypeError: 'str' object is not callable i am getting this error, can you please help me sir.