<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Errors Using Selenium/Chromedriver in DataBricks in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/63769#M32340</link>
    <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/98424"&gt;@Kaizen&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/60100"&gt;@Evan_MCK&lt;/a&gt;&amp;nbsp;: I refactored here a notebook with the elements collected from your posts. I works.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# imports needed for notebook
from datetime import datetime
import dateutil.relativedelta
import os
import time
import urllib.request, json 

def get_latest_driver_url():
  with urllib.request.urlopen("https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json") as url:
      data = json.load(url)
      print(data['channels']['Stable']['version'])
      url = data['channels']['Stable']['downloads']['chromedriver'][0]['url']
      # print(url)
      # set the url as environment variable to use in scripting 
      # os.environ['latest_chromedriver_url']= url
      return url
    
latest_chromedriver_url = get_latest_driver_url()
print(latest_chromedriver_url)&lt;/LI-CODE&gt;&lt;P&gt;Make an init script&lt;/P&gt;&lt;LI-CODE lang="python"&gt;dbutils.fs.mkdirs("dbfs:/databricks/scripts/")
dbutils.fs.put("/databricks/scripts/selenium-install.sh",f"""
#!/bin/bash

latest_chromedriver_url="{latest_chromedriver_url}"
wget -N $latest_chromedriver_url  -O /tmp/chromedriver_linux64.zip
rm -rf /tmp/chromedriver/
unzip /tmp/chromedriver_linux64.zip -d /tmp/chromedriver/

sudo apt-get clean &amp;amp;&amp;amp; sudo apt-get update --fix-missing -y

sudo curl -sS -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add
sudo echo "deb https://dl.google.com/linux/chrome/deb/ stable main" &amp;gt;&amp;gt; /etc/apt/sources.list.d/google-chrome.list
sudo apt-get -y update
sudo apt-get -y install google-chrome-stable
""", True)

display(dbutils.fs.ls("dbfs:/databricks/scripts/"))&lt;/LI-CODE&gt;&lt;P&gt;Run it (or put in cluster init script config to automatically run it at cluster start)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;%sh
/dbfs/databricks/scripts/selenium-install.sh&lt;/LI-CODE&gt;&lt;P&gt;Install Selenium and restart Python kernel (or put it in PiPy package to install at start of cluster)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;%pip install selenium&lt;/LI-CODE&gt;&lt;LI-CODE lang="python"&gt;dbutils.library.restartPython()&lt;/LI-CODE&gt;&lt;P&gt;Init the driver&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# imports needed for notebook
from datetime import datetime
import dateutil.relativedelta
import os
import time
import urllib.request, json 
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support.ui import WebDriverWait

def init_chrome_browser(download_path, chrome_driver_path,  url):
     
    options = Options()
    prefs = {'download.default_directory' : download_path, 'profile.default_content_setting_values.automatic_downloads': 1, "download.prompt_for_download": False,
  "download.directory_upgrade": True,   "safebrowsing.enabled": True ,
  "translate_whitelists": {"vi":"en"},
  "translate":{"enabled":"true"}}
    options.add_experimental_option('prefs', prefs)
    options.add_argument('--no-sandbox')
    options.add_argument('--headless')    # wont work without this feature in databricks can't display browser
    options.add_argument('--disable-dev-shm-usage')
    options.add_argument('--start-maximized')
    options.add_argument('window-size=2560,1440')
    options.add_argument('--ignore-certificate-errors')
    options.add_argument('--ignore-ssl-errors')
    options.add_argument('--lang=en')
    options.add_experimental_option('excludeSwitches', ['enable-logging'])
    print(f"{datetime.now()}    Launching Chrome...")
    browser = webdriver.Chrome(service=Service(chrome_driver_path), options=options)
    print(f"{datetime.now()}    Chrome launched.")
    browser.get(url)
    print(f"{datetime.now()}    Browser ready to use.")
    return browser

driver = init_chrome_browser(
    download_path="/tmp/downloads",
    chrome_driver_path="/tmp/chromedriver/chromedriver-linux64/chromedriver",
    url= "https://www.google.com"
)&lt;/LI-CODE&gt;&lt;P&gt;Test it&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from selenium.webdriver.common.by import By

driver.find_element(By.CSS_SELECTOR, "img").get_attribute("alt")&lt;/LI-CODE&gt;&lt;P&gt;Close the driver&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;driver.quit()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Mar 2024 07:36:33 GMT</pubDate>
    <dc:creator>dungruoc</dc:creator>
    <dc:date>2024-03-15T07:36:33Z</dc:date>
    <item>
      <title>Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24572#M17102</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I’m programming in a notebook and attempting to use the python library &lt;I&gt;Selenium&lt;/I&gt; to automate Chrome/chromedriver. I’ve successfully managed to install selenium using&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;%sh
&amp;nbsp;pip install selenium&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I then attempt the following code, which results in the &lt;I&gt;WebdriverException&lt;/I&gt;, copied below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;from selenium import webdriver
driver = webdriver.Chrome()&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;B&gt;Error:&lt;/B&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WebdriverException: Message: ‘chromedriver’ executable needs to be in PATH. Please see &lt;A href="https://chromedriver.chromium.org/home" target="test_blank"&gt;https://chromedriver.chromium.org/home&lt;/A&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After troubleshooting the error, I attempted instead to use &lt;I&gt;webdriver-manager&lt;/I&gt; to install the instance of chromedriver as follows, whilst also running it headless.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;%sh
pip install webdriver-manager&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.options import Options
&amp;nbsp;
options = Options()
options.add_argument(“—headless”)
&amp;nbsp;
driver = webdriver.Chrome(ChromeDriverManager().install(), options=options)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This time, I got the following error:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WebdriverException: Message: Service /root/.wdm/drivers/chromedriver/linux64/107.0.5304/chromedriver unexpectedly exited. Status code was: 127&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I’ve roamed the internet for a solution, but no matter what I try, my code ends up throwing one of the two WebDriverException errors above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know how I can get selenium running on DataBricks in order to automate Chrome/chromedriver?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 11:16:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24572#M17102</guid>
      <dc:creator>Gray</dc:creator>
      <dc:date>2022-11-01T11:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24573#M17103</link>
      <description>&lt;P&gt;Maybe my manual on how to run selenium on Databricks will help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the clusters library tab, please install &lt;B&gt;PyPi chromedriver-binary==83.0&lt;/B&gt; (or higher, probably version in the script can also be updated)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please run the below script from the notebook to create "/databricks/scripts/&lt;A href="https://selenium-install.sh" alt="https://selenium-install.sh" target="_blank"&gt;selenium-install.sh&lt;/A&gt;" file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;dbutils.fs.mkdirs("dbfs:/databricks/scripts/")
dbutils.fs.put("/databricks/scripts/selenium-install.sh","""
#!/bin/bash
apt-get update
apt-get install chromium-browser=91.0.4472.101-0ubuntu0.18.04.1 --yes
wget &lt;A href="https://chromedriver.storage.googleapis.com/91.0.4472.101/chromedriver_linux64.zip" target="test_blank"&gt;https://chromedriver.storage.googleapis.com/91.0.4472.101/chromedriver_linux64.zip&lt;/A&gt; -O /tmp/chromedriver.zip
mkdir /tmp/chromedriver
unzip /tmp/chromedriver.zip -d /tmp/chromedriver/
""", True)
display(dbutils.fs.ls("dbfs:/databricks/scripts/"))&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please add "/databricks/scripts/&lt;A href="https://selenium-install.sh" alt="https://selenium-install.sh" target="_blank"&gt;selenium-install.sh&lt;/A&gt;" as starting script - init in cluster config.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later in the notebook, you can use chrome, as in the below example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;from selenium import webdriver
chrome_driver = '/tmp/chromedriver/chromedriver'
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--headless')
# chrome_options.add_argument('--disable-dev-shm-usage') 
chrome_options.add_argument('--homedir=/dbfs/tmp')
chrome_options.add_argument('--user-data-dir=/dbfs/selenium')
# prefs = {"download.default_directory":"/dbfs/tmp",
#          "download.prompt_for_download":False
# }
# chrome_options.add_experimental_option("prefs",prefs)
driver = webdriver.Chrome(executable_path=chrome_driver, options=chrome_options)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 16:07:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24573#M17103</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2022-11-01T16:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24574#M17104</link>
      <description>&lt;P&gt;Hi Hubert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your quick response! I've copied your code across to my notebook. However, when I run the following code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;%sh
/dbfs/databricks/scripts/selenium-install.sh&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I get the following output&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Hit:1 &lt;A href="https://repos.azul.com/zulu/deb" target="test_blank"&gt;https://repos.azul.com/zulu/deb&lt;/A&gt; stable InRelease
Hit:2 &lt;A href="http://security.ubuntu.com/ubuntu" target="test_blank"&gt;http://security.ubuntu.com/ubuntu&lt;/A&gt; focal-security InRelease
Hit:3 &lt;A href="http://archive.ubuntu.com/ubuntu" target="test_blank"&gt;http://archive.ubuntu.com/ubuntu&lt;/A&gt; focal InRelease
Hit:4 &lt;A href="http://archive.ubuntu.com/ubuntu" target="test_blank"&gt;http://archive.ubuntu.com/ubuntu&lt;/A&gt; focal-updates InRelease
Hit:5 &lt;A href="http://archive.ubuntu.com/ubuntu" target="test_blank"&gt;http://archive.ubuntu.com/ubuntu&lt;/A&gt; focal-backports InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
E: Version '91.0.4472.101-0ubuntu0.18.04.1' for 'chromium-browser' was not found
/dbfs/databricks/scripts/selenium-install.sh: line 5: --yes: command not found
--2022-11-03 13:02:23--  &lt;A href="https://chromedriver.storage.googleapis.com/91.0.4472.101/" target="test_blank"&gt;https://chromedriver.storage.googleapis.com/91.0.4472.101/&lt;/A&gt;
Resolving chromedriver.storage.googleapis.com (chromedriver.storage.googleapis.com)... 209.85.202.128, 2a00:1450:400b:c01::80
Connecting to chromedriver.storage.googleapis.com (chromedriver.storage.googleapis.com)|209.85.202.128|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2022-11-03 13:02:24 ERROR 404: Not Found.
&amp;nbsp;
/dbfs/databricks/scripts/selenium-install.sh: line 7: chromedriver_linux64.zip: command not found
mkdir: invalid option -- 'd'
Try 'mkdir --help' for more information.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And consequently, when I run this code block:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;from selenium import webdriver
chrome_driver = '/tmp/chromedriver/chromedriver'
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--headless')
# chrome_options.add_argument('--disable-dev-shm-usage')
chrome_options.add_argument('--homedir=/dbfs/tmp')
chrome_options.add_argument('--user-data-dir=/dbfs/selenium')
# prefs = {"download.default_director":"/dbfs/tmp",
#          "download.prompt_for_download":False
# }
# chrome_options.add_experimental_options("prefs",prefs)
driver = webdriver.Chrome(executable_path=chrome_driver, options=chrome_options)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I receive the following error:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see &lt;A href="https://chromedriver.chromium.org/home" target="test_blank"&gt;https://chromedriver.chromium.org/home&lt;/A&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is this something you can shed some light on for me please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 13:10:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24574#M17104</guid>
      <dc:creator>Gray</dc:creator>
      <dc:date>2022-11-03T13:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24575#M17105</link>
      <description>&lt;P&gt;Hi @Henry Gray​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope all is well! Just wanted to check in if you were able to resolve your issue and would you be happy to share the solution or mark an answer as best? Else please let us know if you need more help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'd love to hear from you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Nov 2022 07:12:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24575#M17105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-06T07:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24576#M17106</link>
      <description>&lt;P&gt;Hi, @Henry Gray​&amp;nbsp;.  I've created a new version of the selenium with the databricks manual. Please look here &lt;A href="https://community.databricks.com/s/feed/0D58Y00009SWgVuSAL" target="test_blank"&gt;https://community.databricks.com/s/feed/0D58Y00009SWgVuSAL&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 14:25:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24576#M17106</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2022-11-09T14:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24578#M17108</link>
      <description>&lt;P&gt;@Kaniz Fatma​&amp;nbsp; @Vidula Khanna​&amp;nbsp; @Hubert Dudek​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My colleague and I were finally able to get Selenium running in a notebook. Although I can't explain in detail why this solution works, I have attached the source file below. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully this might help somebody in the future! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 10:04:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24578#M17108</guid>
      <dc:creator>Gray</dc:creator>
      <dc:date>2022-11-11T10:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24580#M17110</link>
      <description>&lt;P&gt;Hi @Henry Gray​&amp;nbsp;, there is one command in your script, which is. running forever. If i am skipping that command, my chromedriver is not working. [&lt;B&gt;xvfb-run java -Dwebdriver.chrome.driver=/usr/bin/chromedriver -jar selenium-server.jar. Can you please suggest how to proceed?]&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 15:06:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24580#M17110</guid>
      <dc:creator>luck_az</dc:creator>
      <dc:date>2022-12-01T15:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24581#M17111</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My colleague and I also found that line started running infinitely. We tinkered with the code and did the following to make it work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Remove the following two portions of code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;%sh
wget &lt;A href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.1.0/selenium-server-4.1.2.jar" target="test_blank"&gt;https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.1.0/selenium-server-4.1.2.jar&lt;/A&gt;
mv selenium-server-4.1.2.jar selenium-server.jar&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;%sh
sudo apt install xvfb
xvfb-run java -D webdriver.chrome.driver=/usr/bin/chromedriver -jar selenium-server.jar&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Add the following code to the beginning:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;%sh
sudo rm -r /var/lib/apt/lists/* 
sudo apt clean &amp;amp;&amp;amp; 
  sudo apt update --fix-missing -y &amp;amp;&amp;amp;
  sudo apt install -y  libmysqlclient21
sudo apt install -y gdal-bin&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, fyi, our runtime version of DataBricks is 0.4 LTS (includes Apache Spark 3.2.1, Scala 2.12).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure why this works, but hopefully it will fix your issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 15:19:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24581#M17111</guid>
      <dc:creator>Gray</dc:creator>
      <dc:date>2022-12-01T15:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24582#M17112</link>
      <description>&lt;P&gt;Thanks, it worked. Great work.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 15:56:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24582#M17112</guid>
      <dc:creator>luck_az</dc:creator>
      <dc:date>2022-12-01T15:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24583#M17113</link>
      <description>&lt;P&gt;I tried this script but got the following response. How do I fix this? &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="databricks_snip"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/1279iA038A103580877D4/image-size/large?v=v2&amp;amp;px=999" role="button" title="databricks_snip" alt="databricks_snip" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 05:12:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24583#M17113</guid>
      <dc:creator>SShiv</dc:creator>
      <dc:date>2022-12-05T05:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24584#M17114</link>
      <description>&lt;P&gt;Hi @Henry Gray​&amp;nbsp; , i want to access vpn using selenium in databricks. Do you have any idea , how we can do that ? &lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 07:27:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24584#M17114</guid>
      <dc:creator>luck_az</dc:creator>
      <dc:date>2022-12-05T07:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24585#M17115</link>
      <description>&lt;P&gt;I also tried the script and am getting similar error. Can anyone please give some resolution for it?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/1269i11A8E5421174B198/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;Error in Failed to fetch &lt;A href="http://archive.ubuntu.com/ubuntu/pool/main/s/systemd/udev_245.4-4ubuntu3.18_amd64.deb" target="test_blank"&gt;http://archive.ubuntu.com/ubuntu/pool/main/s/systemd/udev_245.4-4ubuntu3.18_amd64.deb&lt;/A&gt; and  Unable to fetch some archives&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 11:36:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24585#M17115</guid>
      <dc:creator>aa_204</dc:creator>
      <dc:date>2022-12-15T11:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24586#M17116</link>
      <description>&lt;P&gt;This solution saved my life! Thank you so much for posting it!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 17:58:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/24586#M17116</guid>
      <dc:creator>acristinar</dc:creator>
      <dc:date>2022-12-22T17:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/35347#M25883</link>
      <description>&lt;P&gt;I had same issue try this:&lt;/P&gt;&lt;P&gt;from&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://askubuntu.com/questions/1407071/apt-get-is-inconsistent-on-cluster-cant-always-find-package-libmysqlclient21" target="_blank" rel="noopener"&gt;this&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;post&lt;/P&gt;&lt;PRE&gt;%sh
sudo rm -r /var/lib/apt/lists/* 
sudo apt clean &amp;amp;&amp;amp; 
   sudo apt update --fix-missing -y&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:20:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/35347#M25883</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-27T13:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/35348#M25884</link>
      <description>&lt;P&gt;I had same issue try this as i answered previous question:&lt;/P&gt;&lt;P&gt;from&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://askubuntu.com/questions/1407071/apt-get-is-inconsistent-on-cluster-cant-always-find-package-libmysqlclient21" target="_blank" rel="noopener"&gt;this&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;post&lt;/P&gt;&lt;PRE&gt;%sh
sudo rm -r /var/lib/apt/lists/* 
sudo apt clean &amp;amp;&amp;amp; 
   sudo apt update --fix-missing -y&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 13:20:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/35348#M25884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-27T13:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/50712#M28869</link>
      <description>&lt;P&gt;Hi Gray, I was looking for your script but I don't think you no longer have any file attached to your reply. Would really love your help on this!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 07:10:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/50712#M28869</guid>
      <dc:creator>keithkifo</dc:creator>
      <dc:date>2023-11-09T07:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/57813#M30921</link>
      <description>&lt;P&gt;The attached source file seems to be missing&lt;BR /&gt;&lt;BR /&gt;Also what cluster access type are you running? Shared doesnt let us access the file system since it is protected resulting in error like:&amp;nbsp;&lt;BR /&gt;&lt;SPAN class=""&gt;WebDriverException: &lt;/SPAN&gt;&lt;SPAN&gt;Message: Can not connect to the Service /databricks/.pyenv/bin/chromedriver&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kaizen_0-1705602857683.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/5871i9D892015A8722EFD/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Kaizen_0-1705602857683.png" alt="Kaizen_0-1705602857683.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 18:34:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/57813#M30921</guid>
      <dc:creator>Kaizen</dc:creator>
      <dc:date>2024-01-18T18:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/63524#M32262</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/53473"&gt;@Gray&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I do not find your attached source file? It might be helpful as I am facing the same issue.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 11:29:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/63524#M32262</guid>
      <dc:creator>dungruoc</dc:creator>
      <dc:date>2024-03-13T11:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/63545#M32270</link>
      <description>&lt;P&gt;what worked for me was this solution:&amp;nbsp;&lt;A href="https://stackoverflow.com/a/76515841/22103209" target="_self"&gt;https://stackoverflow.com/a/76515841/22103209&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 12:53:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/63545#M32270</guid>
      <dc:creator>Evan_MCK</dc:creator>
      <dc:date>2024-03-13T12:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Errors Using Selenium/Chromedriver in DataBricks</title>
      <link>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/63572#M32280</link>
      <description>&lt;P&gt;this is what im using to install currently&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# !/bin/bash&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# Script: selenium_init.sh&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# Description: Installs Chrome and Chromedriver with path assignment for Selenium.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;set&lt;/SPAN&gt;&lt;SPAN&gt; -x&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo apt update&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo apt upgrade -y 2&amp;gt;upgrade_errors.log&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# install require chrome libraries&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo apt-get update&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo apt-get install fonts-liberation&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo apt-get install libgbm1 -y&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo apt-get install libu2f-udev -y&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# create directory&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TMP_DIR=&lt;/SPAN&gt;&lt;SPAN&gt;"tmp"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CHROME_DIR=&lt;/SPAN&gt;&lt;SPAN&gt;"${TMP_DIR}/chrome"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CHROMEDRIVER_DIR=&lt;/SPAN&gt;&lt;SPAN&gt;"${TMP_DIR}/chromedriver"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# do a clean install - delete all old drivers&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;rm -rf &lt;/SPAN&gt;&lt;SPAN&gt;${CHROME&lt;/SPAN&gt;&lt;SPAN&gt;_&lt;/SPAN&gt;&lt;SPAN&gt;DIR}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;rm -rf &lt;/SPAN&gt;&lt;SPAN&gt;${CHROMEDRIVER&lt;/SPAN&gt;&lt;SPAN&gt;_&lt;/SPAN&gt;&lt;SPAN&gt;DIR}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;mkdir -p &lt;/SPAN&gt;&lt;SPAN&gt;${CHROME&lt;/SPAN&gt;&lt;SPAN&gt;_&lt;/SPAN&gt;&lt;SPAN&gt;DIR}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;mkdir -p &lt;/SPAN&gt;&lt;SPAN&gt;${CHROMEDRIVER&lt;/SPAN&gt;&lt;SPAN&gt;_&lt;/SPAN&gt;&lt;SPAN&gt;DIR}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# install chrome -&amp;gt; ref &lt;A href="https://www.baeldung.com/linux/chrome-installation-terminal" target="_blank"&gt;https://www.baeldung.com/linux/chrome-installation-terminal&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cd &lt;/SPAN&gt;&lt;SPAN&gt;${CHROME&lt;/SPAN&gt;&lt;SPAN&gt;_&lt;/SPAN&gt;&lt;SPAN&gt;DIR}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# alternative google chrome download below is better for supporting latest version&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# wget &lt;A href="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb" target="_blank"&gt;https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# sudo dpkg -i google-chrome-stable_current_amd64.deb&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# sudo apt-get install -f -y&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# sudo apt-get update --fix-missing&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# download chrome from same source as chromedriver&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;wget &lt;A href="https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.109/linux64/chrome-linux64.zip" target="_blank"&gt;https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.109/linux64/chrome-linux64.zip&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;unzip chrome-linux64.zip&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;.chrome-linux64/chrome&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;google-chrome --version || echo &lt;/SPAN&gt;&lt;SPAN&gt;"look into google-chrome install"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# install chromedriver -&amp;gt; find all driver files here: &lt;A href="https://googlechromelabs.github.io/chrome-for-testing/" target="_blank"&gt;https://googlechromelabs.github.io/chrome-for-testing/&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cd ..&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cd ..&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cd &lt;/SPAN&gt;&lt;SPAN&gt;${CHROMEDRIVER&lt;/SPAN&gt;&lt;SPAN&gt;_&lt;/SPAN&gt;&lt;SPAN&gt;DIR}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# download chromedriver&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl -SL &lt;A href="https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.109/linux64/chromedriver-linux64.zip" target="_blank"&gt;https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/120.0.6099.109/linux64/chromedriver-linux64.zip&lt;/A&gt; -o chromedriver-linux64.zip&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;unzip chromedriver-linux64.zip&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo chown root:root /databricks/driver/tmp/chromedriver&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo chmod +x /databricks/driver/tmp/chromedriver&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# TODO: path assignment is not persistant -&amp;gt; Likely permissions issue or databricks compute engine limitation&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# Current workaround -&amp;gt; move to preassigned system path &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# sudo export PATH=$PATH:/databricks/driver/tmp/chromedriver/chromedriver-linux64/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;# copy file to a location defined in path &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;echo pwd&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo cp -r chromedriver-linux64/chromedriver /databricks/.pyenv/bin&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cd ..&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sudo cp -r chrome/chrome-linux64 /databricks/.pyenv/bin&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;echo &lt;/SPAN&gt;&lt;SPAN&gt;"copied file over- new file dir"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cd /databricks/.pyenv/bin&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ls&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;echo &lt;/SPAN&gt;&lt;SPAN&gt;"Script execution completed successfully"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;echo &lt;/SPAN&gt;&lt;SPAN&gt;"Chrome version:"&lt;/SPAN&gt; &lt;SPAN&gt;$(google&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;chrome &lt;/SPAN&gt;&lt;SPAN&gt;--&lt;/SPAN&gt;&lt;SPAN&gt;version)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;echo &lt;/SPAN&gt;&lt;SPAN&gt;"Chromedriver version:"&lt;/SPAN&gt; &lt;SPAN&gt;$(chromedriver &lt;/SPAN&gt;&lt;SPAN&gt;--&lt;/SPAN&gt;&lt;SPAN&gt;version)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Mar 2024 15:41:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/errors-using-selenium-chromedriver-in-databricks/m-p/63572#M32280</guid>
      <dc:creator>Kaizen</dc:creator>
      <dc:date>2024-03-13T15:41:23Z</dc:date>
    </item>
  </channel>
</rss>

