Skip to content

Commit 4f22e8f

Browse files
committed
change github references to dev branch
1 parent b6426b3 commit 4f22e8f

File tree

11 files changed

+140
-140
lines changed

11 files changed

+140
-140
lines changed

website_and_docs/content/documentation/webdriver/getting_started/first_script.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Follow the link at the bottom of the tab to see an example of the code as it wou
243243
with a test runner instead of a standalone file.
244244

245245
{{< tabpane langEqualsHeader=true >}}
246-
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
246+
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
247247
import org.openqa.selenium.By;
248248
import org.openqa.selenium.WebDriver;
249249
import org.openqa.selenium.WebElement;
@@ -272,7 +272,7 @@ public class HelloSelenium {
272272
}
273273
}
274274
{{< /tab >}}
275-
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/python/tests/getting_started/test_first_script.py" >}}
275+
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/python/tests/getting_started/test_first_script.py" >}}
276276
from selenium import webdriver
277277
from selenium.webdriver.common.by import By
278278

@@ -296,7 +296,7 @@ driver.find_element(By.NAME, "q").get_attribute("value") # => "Selenium"
296296
driver.quit()
297297

298298
{{< /tab >}}
299-
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
299+
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
300300
using OpenQA.Selenium;
301301
using OpenQA.Selenium.Chrome;
302302

@@ -322,7 +322,7 @@ class HelloSelenium {
322322
}
323323
}
324324
{{< /tab >}}
325-
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
325+
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
326326
require 'selenium-webdriver'
327327

328328
driver = Selenium::WebDriver.for :chrome

website_and_docs/content/documentation/webdriver/getting_started/first_script.ja.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Follow the link at the bottom of the tab to see an example of the code as it wou
246246
with a test runner instead of a standalone file.
247247

248248
{{< tabpane langEqualsHeader=true >}}
249-
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
249+
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
250250
import org.openqa.selenium.By;
251251
import org.openqa.selenium.WebDriver;
252252
import org.openqa.selenium.chrome.ChromeDriver;
@@ -274,7 +274,7 @@ public class HelloSelenium {
274274
}
275275
}
276276
{{< /tab >}}
277-
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/python/tests/getting_started/test_first_script.py" >}}
277+
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/python/tests/getting_started/test_first_script.py" >}}
278278
from selenium import webdriver
279279
from selenium.webdriver.common.by import By
280280

@@ -298,7 +298,7 @@ driver.find_element(By.NAME, "q").get_attribute("value") # => "Selenium"
298298
driver.quit()
299299

300300
{{< /tab >}}
301-
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
301+
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
302302
using OpenQA.Selenium;
303303
using OpenQA.Selenium.Chrome;
304304

@@ -324,7 +324,7 @@ class HelloSelenium {
324324
}
325325
}
326326
{{< /tab >}}
327-
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
327+
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
328328
require 'selenium-webdriver'
329329

330330
driver = Selenium::WebDriver.for :chrome

website_and_docs/content/documentation/webdriver/getting_started/first_script.pt-br.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ Follow the link at the bottom of the tab to see an example of the code as it wou
244244
with a test runner instead of a standalone file.
245245

246246
{{< tabpane langEqualsHeader=true >}}
247-
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
247+
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
248248
import org.openqa.selenium.By;
249249
import org.openqa.selenium.WebDriver;
250250
import org.openqa.selenium.WebElement;
@@ -273,7 +273,7 @@ public class HelloSelenium {
273273
}
274274
}
275275
{{< /tab >}}
276-
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/python/tests/getting_started/test_first_script.py" >}}
276+
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/python/tests/getting_started/test_first_script.py" >}}
277277
from selenium import webdriver
278278
from selenium.webdriver.common.by import By
279279

@@ -297,7 +297,7 @@ driver.find_element(By.NAME, "q").get_attribute("value") # => "Selenium"
297297
driver.quit()
298298

299299
{{< /tab >}}
300-
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
300+
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
301301
using OpenQA.Selenium;
302302
using OpenQA.Selenium.Chrome;
303303

@@ -323,7 +323,7 @@ class HelloSelenium {
323323
}
324324
}
325325
{{< /tab >}}
326-
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
326+
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
327327
require 'selenium-webdriver'
328328

329329
driver = Selenium::WebDriver.for :chrome

website_and_docs/content/documentation/webdriver/getting_started/first_script.zh-cn.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Follow the link at the bottom of the tab to see an example of the code as it wou
248248
with a test runner instead of a standalone file.
249249

250250
{{< tabpane langEqualsHeader=true >}}
251-
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
251+
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
252252
import org.openqa.selenium.By;
253253
import org.openqa.selenium.WebDriver;
254254
import org.openqa.selenium.WebElement;
@@ -277,7 +277,7 @@ public class HelloSelenium {
277277
}
278278
}
279279
{{< /tab >}}
280-
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/python/tests/getting_started/test_first_script.py" >}}
280+
{{< tab header="Python" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/python/tests/getting_started/test_first_script.py" >}}
281281
from selenium import webdriver
282282
from selenium.webdriver.common.by import By
283283

@@ -301,7 +301,7 @@ driver.find_element(By.NAME, "q").get_attribute("value") # => "Selenium"
301301
driver.quit()
302302

303303
{{< /tab >}}
304-
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
304+
{{< tab header="CSharp" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/dotnet/SeleniumDocs/GettingStarted/FirstScriptTest.cs" >}}
305305
using OpenQA.Selenium;
306306
using OpenQA.Selenium.Chrome;
307307

@@ -327,7 +327,7 @@ class HelloSelenium {
327327
}
328328
}
329329
{{< /tab >}}
330-
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
330+
{{< tab header="Ruby" github="SeleniumHQ/seleniumhq.github.io/blob/dev/examples/ruby/spec/getting_started/first_script_spec.rb" >}}
331331
require 'selenium-webdriver'
332332

333333
driver = Selenium::WebDriver.for :chrome

website_and_docs/content/documentation/webdriver/getting_started/install_drivers.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ChromeDriver driver = new ChromeDriver();
6060
```
6161

6262
<div class="github">
63-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/InstallDriversTest.java">
63+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/java/src/test/java/dev/selenium/getting_started/InstallDriversTest.java">
6464
See full example on GitHub.</a>
6565
</div>
6666

@@ -85,7 +85,7 @@ driver = webdriver.Chrome(service=service)
8585
```
8686

8787
<div class="github">
88-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/python/tests/getting_started/test_install_drivers.py">
88+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/python/tests/getting_started/test_install_drivers.py">
8989
See full example on GitHub.</a>
9090
</div>
9191

@@ -111,7 +111,7 @@ var driver = new ChromeDriver()
111111
```
112112

113113
<div class="github">
114-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/dotnet/SeleniumDocs/GettingStarted/InstallDriversTest.cs">
114+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/dotnet/SeleniumDocs/GettingStarted/InstallDriversTest.cs">
115115
See full example on GitHub.</a>
116116
</div>
117117

@@ -134,7 +134,7 @@ driver = Selenium::WebDriver.for :chrome
134134
```
135135

136136
<div class="github">
137-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/ruby/spec/getting_started/install_drivers_spec.rb">
137+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/ruby/spec/getting_started/install_drivers_spec.rb">
138138
See full example on GitHub.</a>
139139
</div>
140140

website_and_docs/content/documentation/webdriver/getting_started/install_drivers.pt-br.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ ChromeDriver driver = new ChromeDriver();
6161
```
6262

6363
<div class="github">
64-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/InstallDriversTest.java">
64+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/java/src/test/java/dev/selenium/getting_started/InstallDriversTest.java">
6565
See full example on GitHub.</a>
6666
</div>
6767

@@ -86,7 +86,7 @@ driver = webdriver.Chrome(service=service)
8686
```
8787

8888
<div class="github">
89-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/python/tests/getting_started/test_install_drivers.py">
89+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/python/tests/getting_started/test_install_drivers.py">
9090
See full example on GitHub.</a>
9191
</div>
9292

@@ -112,7 +112,7 @@ var driver = new ChromeDriver()
112112
```
113113

114114
<div class="github">
115-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/dotnet/SeleniumDocs/GettingStarted/InstallDriversTest.cs">
115+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/dotnet/SeleniumDocs/GettingStarted/InstallDriversTest.cs">
116116
See full example on GitHub.</a>
117117
</div>
118118

@@ -135,7 +135,7 @@ driver = Selenium::WebDriver.for :chrome
135135
```
136136

137137
<div class="github">
138-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/ruby/spec/getting_started/install_drivers_spec.rb">
138+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/ruby/spec/getting_started/install_drivers_spec.rb">
139139
See full example on GitHub.</a>
140140
</div>
141141

website_and_docs/content/documentation/webdriver/getting_started/install_drivers.zh-cn.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ChromeDriver driver = new ChromeDriver();
6565
```
6666

6767
<div class="github">
68-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/InstallDriversTest.java">
68+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/java/src/test/java/dev/selenium/getting_started/InstallDriversTest.java">
6969
See full example on GitHub.</a>
7070
</div>
7171

@@ -90,7 +90,7 @@ driver = webdriver.Chrome(service=service)
9090
```
9191

9292
<div class="github">
93-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/python/tests/getting_started/test_install_drivers.py">
93+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/python/tests/getting_started/test_install_drivers.py">
9494
See full example on GitHub.</a>
9595
</div>
9696

@@ -116,7 +116,7 @@ var driver = new ChromeDriver()
116116
```
117117

118118
<div class="github">
119-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/dotnet/SeleniumDocs/GettingStarted/InstallDriversTest.cs">
119+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/dotnet/SeleniumDocs/GettingStarted/InstallDriversTest.cs">
120120
See full example on GitHub.</a>
121121
</div>
122122

@@ -139,7 +139,7 @@ driver = Selenium::WebDriver.for :chrome
139139
```
140140

141141
<div class="github">
142-
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/ruby/spec/getting_started/install_drivers_spec.rb">
142+
<a href ="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/dev/examples/ruby/spec/getting_started/install_drivers_spec.rb">
143143
See full example on GitHub.</a>
144144
</div>
145145

0 commit comments

Comments
 (0)