diff --git a/examples/example_related.py b/examples/example_related.py index 0d7d2d7..aa2ebd1 100644 --- a/examples/example_related.py +++ b/examples/example_related.py @@ -24,7 +24,7 @@ def get_related(config, keywords, related): config = serpscrap.Config() config.set('scrape_urls', False) -keywords = ['cryptocurrency'] +keywords = ['stellar'] related = keywords related = get_related(config, keywords, related) diff --git a/install_chrome.sh b/install_chrome.sh index 5a4190f..ca6baaf 100644 --- a/install_chrome.sh +++ b/install_chrome.sh @@ -6,7 +6,7 @@ # Versions CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE` -SELENIUM_STANDALONE_VERSION=3.13.1 +SELENIUM_STANDALONE_VERSION=3.14.1 SELENIUM_SUBDIR=$(echo "$SELENIUM_STANDALONE_VERSION" | cut -d"." -f-2) # Remove existing downloads and binaries so we can start from scratch. diff --git a/setup.py b/setup.py index 56cf495..c43c1b3 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ 'html2text==2018.1.9', 'lxml==4.2.3', 'sqlalchemy==1.2.10', - 'selenium==3.13.1', + 'selenium==3.14.1', 'cssselect==1.0.3', ], scripts=['install_chrome.sh'],