Aim to control an eToro account from site with signals of buying and selling given to Selenium API.
Using Selenium on local machine is done using this code:
from selenium import webdriver
PATH = "C:\Chrome Webdriver\chromedriver.exe"
driver = webdriver.Chrome(PATH)
Doing this online through Colabs is more difficult as importing working chomedriver software is not as straightforward. Have had some consideration of using the Kora library: https://yugdamor.medium.com/selenium-inside-google-colab-febe6d797ce4?source=friends_link&sk=3954d724ca6dc396c3af89b289c0e802.
Kora does not seem to offer the same exact features as Selenium, such as being able to control the webpage itself; navigation and clicking on elements. What efficient ways are there to either import chromedriver to Colabs or use Kora in the way intended?