Interacting With a Web Page: Selenium and Python 2

preview_player
Показать описание
In this tutorial, we cover basic interactions with web pages such as filling out forms and clicking buttons with Chromedriver in Python via the Selenium module.

Рекомендации по теме
Комментарии
Автор

Thanks so much. you have no idea how much help was this, I was about to say no to my client and then I found this video, people like you are hero.

garimapandey
Автор

OMG dude this is so simple and straightforward, what have i been doing with java all this time oO

MateusMeurer
Автор

pretty useful man, this is exactly what i needed for my project, I guess now it's time to read Selenium docs hahah, thanks a lot.

henriquekubenda
Автор

thanks a lot, this tutorial is very clear and straightforward I love it :)

traze
Автор

I don't understand what the executable path is

thealmostcoolkid
Автор

Thanks dude I needed this for a project man!

newaccount
Автор

Is there any other option other than selanium to be used with python?

sonalj
Автор

How to login python script to login Truecaller

esrefhyd-amp
Автор

thanks a lot man
this is actually super helpful

surendarmalai
Автор

I really appreciate your video! regards!

navidmohammadzadeh
Автор

chromedriver version not working for me :/

moi
Автор

wow... I can do so much with this thank you so much

bananalord
Автор

Thank you but is there a way to make it functional if you you go from .py to .exe then share the file?

mohamedaminetrigui
Автор

I am not getting the .click() option. Is anyone else facing the same issue?

padisalashanthan
Автор

hi its a good tutoral but when i tried to click it did not work at all it will just open a window and then do nothing

here is code

from selenium import webdriver
import time
chromedriver = r"C:\file directory"
driver =

element =
element.click()

Adam-zxhp