This kid is going to take over the world one day! Holy Moly!
@vinayakdevc62 жыл бұрын
thank you kid, this made my job 100x better, i hate data entry, unfortunately i had to do this. thanks for your explanation and few changes with new documentation i started loving data entry😆!
@SAYN122 жыл бұрын
great Rishab, very good excellent speech, and explained
@BestoracleDBA2 жыл бұрын
Excellent presentation
@stephenscorzo Жыл бұрын
This was an excellent video on how to automate for filling which is straight to the point, informative and very impressive.
@RishabTeachesTech Жыл бұрын
thank you !!
@eduardotejeda3 жыл бұрын
This is so helpful. Thank you for making this video.
@masterprog484 ай бұрын
awesome kids , i respect you
@iamkzonjames3 жыл бұрын
Nice video. What if i want to use proxies a driver opens and if you need to solve a captcha before submitting the form? How can i integrate those? Thanks!
@xandergr8t2 жыл бұрын
Matey this is amazing! Keep it up!
@appsgames35133 жыл бұрын
If the csv file contains the hindi language and emojis then send_keys is not working so how to fix that
@cpramanick2 жыл бұрын
Hi, can I use this code fill out any from in specific website, what about the attachment if I have to attach.
@kadiriyoussef27822 жыл бұрын
very good excellent explained, I have a question How to fill Drop Down, Radio Buttons or Checkboxes with a CSV File using Python
@pedrolebre28272 жыл бұрын
How can you write this so that it keeps looping through each row without opening a new browser instance for each row?
@kaifmomin21193 жыл бұрын
Hey nice video...one question and im not sure if you covered it or not, but can you create an auto fill bot that can work with different form types (ie google and microsoft) and for a form that you do not know the fields of. I want to create a auto filler that fills my name, address, email, phones number, etc, for every form, regardless of the other fields. I dont want to fill these fields every time and just want to worry about the other ones....thanks!
@kadiriyoussef27822 жыл бұрын
Hi, this is excellent video, I have a question, how I can save this form for example in CSV/Excel using Python
@macrozel-id3 жыл бұрын
how to make something like this, but not opening a browser, i mean, just run and done. no apps opened. thanks
@RishabTeachesTech3 жыл бұрын
You can use request.get that can fetch web page contents without launching the browser. I may do a video on this topic soon.
@varunkumarmachipeddi90573 жыл бұрын
@@RishabTeachesTech please post it possibly faster
@RishabTeachesTech3 жыл бұрын
@@varunkumarmachipeddi9057 Here it is :) kzbin.info/www/bejne/mJi4fXute6ajqMU
@Elhmiz2 жыл бұрын
I have csv data and I want to upload this data from website using python
@mehdismaeili37432 жыл бұрын
Hi, this is excellent video, thanks.
@mjnyota2 жыл бұрын
what if the form has a radio button?
@rupaliurkude5298 Жыл бұрын
can this work for crm website??
@indie226 Жыл бұрын
mantap
@3789831492 жыл бұрын
damn, kid you are great xd, thanks
@3789831492 жыл бұрын
you just made my life easier
@frankservant57542 жыл бұрын
thanks kiddo
@BestoracleDBA2 жыл бұрын
Excellent video. Great job. I am having issue picking the 2nd column. First element (First column, First Row) after that it don't pickup 2nd column and I see error "NoSuchWindowException: Message: no such window: target window already closed from unknown error: web view not found (Session info: chrome=108.0.5359.99)" Ths is my code can you let me know what is missing. Thank you. import csv import time import webbrowser from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager import pandas as pd import requests from selenium.webdriver.chrome.service import Service from selenium.webdriver.chrome.options import Options with open('test.csv', 'r') as csv_file: csv_reader = csv.reader(csv_file) for line in csv_reader: ## print(line) driver = webdriver.Chrome(ChromeDriverManager().install()) driver.get("""www.2-10.com/get-a-quote-ypmrt/?gclid=CjwKCAiAs8acBhA1EiwAgRFdw3oVH8ouB_zhXvpIP2iSzqcBvWv-d8JTtlG1bqgT8QspxJgJDwNyURoCWn4QAvD_BwE""") driver.maximize_window() time.sleep(1) name= driver.find_element('xpath','//*[@id="zip"]') name.send_keys(line[0]) l_mame = driver.find_element('xpath', '//*[@id="email"]') l_name.send_keys(line[1]) submit = driver.find_element('//*[@id="topLoginForm"]/div[3]/button' ) submit.click