Skip to content

Modify: PR for stale pr #111 #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -81,7 +89,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -75,7 +83,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -81,7 +89,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -81,7 +89,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -80,7 +88,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -81,7 +89,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -81,7 +89,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

firefox_options = webdriver.FirefoxOptions()
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=firefox_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
FirefoxOptions firefoxOptions = new FirefoxOptions();
Expand Down Expand Up @@ -80,7 +88,17 @@ driver.get("http://www.google.com");
driver.quit();
{{< / code-panel >}}
{{< code-panel language="python" >}}
# We don't have a Python code sample yet - Help us out and raise a PR
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.set_capability("browserVersion", "67")
chrome_options.set_capability("platformName", "Windows XP")
driver = webdriver.Remote(
command_executor='http://www.example.com',
options=chrome_options
)
driver.get("http://www.google.com")
driver.quit()
{{< / code-panel >}}
{{< code-panel language="csharp" >}}
var chromeOptions = new ChromeOptions();
Expand Down