From 3c6a69a6df99ef09badd2a0220d84ba023603b45 Mon Sep 17 00:00:00 2001 From: titusfortner Date: Wed, 6 Dec 2023 00:28:48 -0600 Subject: [PATCH] update python documentation for using grid by pointing to selenium.dev --- py/docs/source/index.rst | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 1adc92dc5ccc3..54123b5d600ca 100755 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -119,20 +119,15 @@ Selenium WebDriver is often used as a basis for testing web applications. Here if __name__ == '__main__': unittest.main(verbosity=2) -Selenium Server (optional) +Selenium Grid (optional) ========================== -For normal WebDriver scripts (non-Remote), the Java server is not needed. +For local Selenium scripts, the Java server is not needed. -However, to use Selenium Webdriver Remote , you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE). +To use Selenium remotely, you need to also run the Selenium grid. +For information on running Selenium Grid: https://www.selenium.dev/documentation/grid/getting_started/ -Download the server separately, from: https://www.selenium.dev/downloads/ - -Run the server from the command line:: - - java -jar selenium-server-4.15.0.jar - -Then run your Python client scripts. +To use Remote WebDriver see: https://www.selenium.dev/documentation/webdriver/drivers/remote_webdriver/?tab=python Use The Source Luke! ====================