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
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.
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
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!
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
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
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.
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.
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.
@@divyaagrawal7530 Use this code to keep browser open options = webdriver.ChromeOptions() options.add_experimental_option("detach", True) driver = webdriver.Chrome(options = options)
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. =)))
Right now, I started with Python learning. Right after, I will create on POM and frameworks
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
1:02:05 - selectors hub browser extension
1:11:25 - automate login functionality
1:27:56 - browser commands
1:37:45 - viewport
1:46:30 - checkboxes
2:03:10 - drop-down
2:26:53 - broken links
2:38:30 - broken images
2:49:41 - Handling multiple tabs
3:06:16 - Handling web tables
3:26:31 - Handling Iframes
3:38:13 - Handling nested frames
3:49:40 - Handling javascript alerts
4:04:27 - Handling datepicker - 1
4:26:31 - Handling dropdown datepicker - 2
4:52:41 - Handling mouse hover
5:02:06 - Handling drag and drop
5:09:29 - Handling slider
5:17:30 - Handling resizable elements
5:27:55 - Basic authentication
5:33:43 - Incognito mode
5:42:30 - Data driven testing using xlsx
6:04:11 - Data driven testing using csv
6:14:36 - Data driven testing using json
6:23:43 - Implicit wait
6:37:06 - Explicit wait
This is the best course on Selenium. Great explanations and examples. Truly amazing. Thank you.
Thanks Happy learning
This is the best video to learn because other are very old and lengthy process and advantages they are using python.
Thanks a lot.
B b we ni😢😅🎉😊
Sir op viedo tha 1hr and 40mins dekha mana sir bhut acha samjha raha hai app
1:02:05 - selectors hub browser extension
1:11:25 - automate login functionality
1:27:56 - browser cmd
1:02:05 - selectors hub browser extension
1:11:25 - automate login functionality
1:27:56 - browser cmd
1:37:45 - viewport
1:46:30 - checkboxes
2:03:10 - drop-down
Thanks
thank you so much sir, you really help me alot with this content. May god bless you.
Thank you so much. Happy learning 👍
Very nice your way of explaining everything in detail or in fast manner perfect
@@020hamza2 that's great. Happy learning 👍
thank you for this great course. if possible can you share your demo website link so we can practice together.
Thanks. Which Practise site you are referring?
I am using vs code editor in ubunto ... Is this video work for me???
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.
thank u so much for this
Good
Thanks
Do you know why my selenium actions aren’t yellow “ex: driver. Forward or time.sleep”
I am using a theme thats why
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
Can you please share more details?
Thankyou , this course is awesome and one of the best course to learn selenium using python
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!
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
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
@@spycarnage6019 Use Selenium implicit or explicit waits
What's the jobe role where we use python selenium
@@RaniKrishna-s6o Automation Testing
Really very nice
Thanks happy learning
how to exit from full screen window to normal browser window
Use driver.set_window and set your desired screen size. Here is an example: driver.set_window_size(1024, 768)
my google chrome closes immdeiately after being launched by selenium. plz help
ua-cam.com/video/ijT2sLVdnPM/v-deo.html
import time
before closing write
time.sleep(10)
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.
Can you please share your code?
@@TestingFunda I get it sir thank you for your reply
@@biswanthpinnika7149 Thats Great
browser.get("link") is throwing an error so i'm using driver.get.................. is it correct?
Can you please complete code
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.
driver.find_element(By.XPATH, "//*[@id='APjFqb']")
@@TestingFunda I tried this as well. If you can give your number or email ID, I can connect with you sir. Please
you have to use coma ", " after XPATH
@@asadmanzoor7873 thank you
iss course ko complete krne ke baad kya krna chaiye?
Practice
1:00:00
can you please share the code for this or the github link
I haven't uploaded the code on github till now but will upload soon and share the link
Anyone please update the timeline. Thanks
I will do it soon. Sorry for the inconvenience
Timeline updated
Chrome is crashing, i.e. getting closed automatically once the execution is completed.
Can you please share more details?
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.
@@divyaagrawal7530 To prevent Chrome from closing add this code
options = webdriver.ChromeOptions()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(options=options)
@TestingFunda please share the steps to resolve this issue as I have to add time.sleep() function to keep browser open for some time.
@@divyaagrawal7530 Use this code to keep browser open
options = webdriver.ChromeOptions()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(options = options)
Understandable
Great Thanks
i am not able to download chrome driver. i am not getting .exe. please help me.
You don't need to in latest version
@@TestingFunda in your latest video, have you covered full course of selenium automation testing with python sir??.
@manjulacn3289 yes this is the latest tutorial
@@TestingFunda Thank you soo much sir, and also If you're gonna start course means I will join sir.
Zxt3