audible-activator
audible-activator copied to clipboard
Updated calls to selenium.webdriver.find_element_by_id
Running the original audible-activator.py script with the Firefox web driver results in the error:
Traceback (most recent call last):
File "audible-activator.py", line 202, in
I updated these calls to have the intended functionality by importing By from selenium.webdriver.common.by:
search_box = driver.find_element(By.ID, 'ap_email')
Running audible-activator.py with the latest chromedriver at the time of installation through brew yields the same error and is fixed by the same fix.
$ chromedriver -v ChromeDriver 106.0.5249.61 (511755355844955cd3e264779baf0dd38212a4d0-refs/branch-heads/5249@{#569})
please merge this.
And also... please freeze dependencies version in requirements.txt to avoid such situations in the future.
I was about to make the same PR ... Thanks @inAudible-NG for your work, really appreciated