Is there anyway to use chrome driver?
Hi, @Ashenguard . Please, install selenium module with pip and import the webdriver from the selenium.
Just like this:
pip install selenium
and second you should do this:
from selenium import webdriver
Your code will look like this:
driver = webdriver.Chrome() driver.get('https://www.repl.it/') print(driver.title) time.sleep(5) driver.quit()
It's simply example, you can write you own variant.
@elonmaks using python or pygame?
Uhhh, T does not work @elonmaks
Hi, @Ashenguard . Please, install selenium module with pip and import the webdriver from the selenium.
Just like this:
pip install selenium
and second you should do this:
from selenium import webdriver
Your code will look like this:
driver = webdriver.Chrome()
driver.get('https://www.repl.it/')
print(driver.title)
time.sleep(5)
driver.quit()
It's simply example, you can write you own variant.
@elonmaks using python or pygame?
Uhhh, T does not work
@elonmaks