Skip to content

Commit 3bf50d6

Browse files
committed
Update the docs
1 parent ab5b24b commit 3bf50d6

File tree

6 files changed

+97
-68
lines changed

6 files changed

+97
-68
lines changed

help_docs/customizing_test_runs/index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2904,6 +2904,14 @@ <h3><img src="https://seleniumbase.github.io/img/green_logo.png" title="Selenium
29042904
<div class="highlight"><pre><span></span><code>pytest<span class="w"> </span>--headless<span class="w"> </span>-n8<span class="w"> </span>--dashboard<span class="w"> </span>--html<span class="o">=</span>report.html<span class="w"> </span>-v<span class="w"> </span>--rs<span class="w"> </span>--crumbs
29052905
</code></pre></div>
29062906
<p>The above not only runs tests in parallel processes, but it also tells tests in the same process to share the same browser session, runs the tests in headless mode, displays the full name of each test on a separate line, creates a real-time dashboard of the test results, and creates a full report after all tests complete.</p>
2907+
<p>🎛️ For extra speed, run your tests using <code>chrome-headless-shell</code>:</p>
2908+
<p>First, get <code>chrome-headless-shell</code> if you don't already have it:</p>
2909+
<div class="highlight"><pre><span></span><code>sbase<span class="w"> </span>get<span class="w"> </span>chs
2910+
</code></pre></div>
2911+
<p>Then, run scripts with <code>binary_location</code> / <code>bl</code> set to <code>"chs"</code>:</p>
2912+
<div class="highlight"><pre><span></span><code>pytest<span class="w"> </span>--bl<span class="o">=</span><span class="s2">&quot;chs&quot;</span><span class="w"> </span>-n8<span class="w"> </span>--dashboard<span class="w"> </span>--html<span class="o">=</span>report.html<span class="w"> </span>-v<span class="w"> </span>--rs
2913+
</code></pre></div>
2914+
<p>That makes your tests run very quickly in headless mode.</p>
29072915
<hr />
29082916
<h3><img src="https://seleniumbase.github.io/img/green_logo.png" title="SeleniumBase" width="32" /> The SeleniumBase Dashboard:</h3>
29092917

@@ -2970,6 +2978,19 @@ <h3><img src="https://seleniumbase.github.io/img/green_logo.png" title="Selenium
29702978
* <code>"mlatest"</code> (latest version for the milestone)</p>
29712979
<p>Note that different options could lead to the same result. (Eg. If you have the latest version of a browser for a milestone, then <code>"browser"</code> and <code>"mlatest"</code> should give you the same driver if the latest driver version for that milestone matches the browser version.)</p>
29722980
<hr />
2981+
<h3><img src="https://seleniumbase.github.io/img/green_logo.png" title="SeleniumBase" width="32" /> Setting the binary location:</h3>
2982+
2983+
<p>🔵 By default, SeleniumBase uses the browser binary detected on the System PATH.</p>
2984+
<p>🎛️ To change this default behavior, you can use:</p>
2985+
<div class="highlight"><pre><span></span><code>pytest<span class="w"> </span>--binary-location<span class="o">=</span>PATH
2986+
</code></pre></div>
2987+
<p>The <code>PATH</code> in <code>--binary-location=PATH</code> / <code>--bl=PATH</code> can be:
2988+
* A relative or exact path to the browser binary.
2989+
* <code>"cft"</code> as a special option for <code>Chrome for Testing</code>.
2990+
* <code>"chs"</code> as a special option for <code>Chrome-Headless-Shell</code>.</p>
2991+
<p>Before using the <code>"cft"</code> / <code>"chs"</code> options, call <code>sbase get cft</code> / <code>sbase get chs</code> in order to download the specified binaries into the <code>seleniumbase/drivers</code> folder. The default version is the latest stable version on https://googlechromelabs.github.io/chrome-for-testing/. You can change that by specifying the arg as a parameter. (Eg. <code>sbase get cft 131</code>, <code>sbase get chs 132</code>, etc.)</p>
2992+
<p>With the <code>SB()</code> and <code>Driver()</code> formats, the binary location is set via the <code>binary_location</code> parameter.</p>
2993+
<hr />
29732994
<h3><img src="https://seleniumbase.github.io/img/green_logo.png" title="SeleniumBase" width="32" /> Customizing default settings:</h3>
29742995

29752996
<p>🎛️ An easy way to override <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py">seleniumbase/config/settings.py</a> is by using a custom settings file.

help_docs/webdriver_installation/index.html

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2620,16 +2620,14 @@ <h1>⚙️ Downloading drivers</h1>
26202620

26212621
<h2 id="installing-webdrivers"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.github.io/img/logo6.png" title="SeleniumBase" width="32"></a> Installing webdrivers<a class="headerlink" href="#installing-webdrivers" title="Permanent link">&para;</a></h2>
26222622
<p>To run web automation, you need webdrivers for each browser you plan on using. With SeleniumBase, drivers are downloaded automatically (as needed) into the SeleniumBase <code>drivers/</code> folder.</p>
2623-
<p>You can also download drivers manually with these commands:</p>
2623+
<p>🎛️ You can also download drivers manually with these commands:</p>
26242624
<div class="highlight"><pre><span></span><code>seleniumbase<span class="w"> </span>get<span class="w"> </span>chromedriver
26252625
seleniumbase<span class="w"> </span>get<span class="w"> </span>geckodriver
26262626
seleniumbase<span class="w"> </span>get<span class="w"> </span>edgedriver
26272627
</code></pre></div>
26282628
<p>After running the commands above, web drivers will get downloaded into the <code>seleniumbase/drivers/</code> folder. SeleniumBase uses those drivers during tests. (The drivers don't come with SeleniumBase by default.)</p>
26292629
<p>If the necessary driver is not found in this location while running tests, SeleniumBase will instead look for the driver on the System PATH. If the necessary driver is not on the System PATH either, SeleniumBase will automatically attempt to download the required driver.</p>
2630-
<ul>
2631-
<li>You can also download specific versions of drivers. Examples:</li>
2632-
</ul>
2630+
<p>🎛️ You can also download specific versions of drivers. Examples:</p>
26332631
<div class="highlight"><pre><span></span><code>sbase<span class="w"> </span>get<span class="w"> </span>chromedriver<span class="w"> </span><span class="m">114</span>
26342632
sbase<span class="w"> </span>get<span class="w"> </span>chromedriver<span class="w"> </span><span class="m">114</span>.0.5735.90
26352633
sbase<span class="w"> </span>get<span class="w"> </span>chromedriver<span class="w"> </span>stable
@@ -2659,31 +2657,39 @@ <h2 id="installing-webdrivers"><a href="https://github.com/seleniumbase/Selenium
26592657
</li>
26602658
</ul>
26612659
<p><strong>macOS shortcuts</strong>:</p>
2662-
<ul>
2663-
<li>You can also install drivers by using <code>brew</code> (aka <code>homebrew</code>):</li>
2664-
</ul>
2660+
<p>🎛️ You can also install drivers by using <code>brew</code> (aka <code>homebrew</code>):</p>
26652661
<div class="highlight"><pre><span></span><code>brew<span class="w"> </span>install<span class="w"> </span>--cask<span class="w"> </span>chromedriver
26662662

26672663
brew<span class="w"> </span>install<span class="w"> </span>geckodriver
26682664
</code></pre></div>
2669-
<p>You can also upgrade existing webdrivers:</p>
2665+
<p>🎛️ You can also upgrade existing webdrivers:</p>
26702666
<div class="highlight"><pre><span></span><code>brew<span class="w"> </span>upgrade<span class="w"> </span>--cask<span class="w"> </span>chromedriver
26712667

26722668
brew<span class="w"> </span>upgrade<span class="w"> </span>geckodriver
26732669
</code></pre></div>
26742670
<p><strong>Linux shortcuts</strong>:</p>
2675-
<p>If you still need drivers, these scripts download <code>chromedriver</code> and <code>geckodriver</code> to a Linux machine:</p>
2671+
<p>🎛️ If you still need drivers, these scripts download <code>chromedriver</code> and <code>geckodriver</code> to a Linux machine:</p>
26762672
<div class="highlight"><pre><span></span><code>wget<span class="w"> </span>https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_linux64.zip
26772673
unzip<span class="w"> </span>chromedriver_linux64.zip
26782674
mv<span class="w"> </span>chromedriver<span class="w"> </span>/usr/local/bin/
26792675
chmod<span class="w"> </span>+x<span class="w"> </span>/usr/local/bin/chromedriver
26802676
</code></pre></div>
2681-
<div class="highlight"><pre><span></span><code>wget<span class="w"> </span>https://github.com/mozilla/geckodriver/releases/download/v0.34.0/geckodriver-v0.34.0-linux64.tar.gz
2682-
tar<span class="w"> </span>xvfz<span class="w"> </span>geckodriver-v0.34.0-linux64.tar.gz
2677+
<div class="highlight"><pre><span></span><code>wget<span class="w"> </span>https://github.com/mozilla/geckodriver/releases/download/v0.35.0/geckodriver-v0.35.0-linux64.tar.gz
2678+
tar<span class="w"> </span>xvfz<span class="w"> </span>geckodriver-v0.35.0-linux64.tar.gz
26832679
mv<span class="w"> </span>geckodriver<span class="w"> </span>/usr/local/bin/
26842680
chmod<span class="w"> </span>+x<span class="w"> </span>/usr/local/bin/geckodriver
26852681
</code></pre></div>
26862682
<p>To verify that web drivers are working, <strong><a href="../verify_webdriver/">follow these instructions</a></strong>.</p>
2683+
<hr />
2684+
<p><strong>Browser Binaries</strong>:</p>
2685+
<p>🎛️ Use the <code>sbase get</code> command to download the <code>Chrome for Testing</code> and <code>Chrome-Headless-Shell</code> browser binaries. Example:</p>
2686+
<div class="highlight"><pre><span></span><code>sbase<span class="w"> </span>get<span class="w"> </span>cft<span class="w"> </span><span class="c1"># (For `Chrome for Testing`)</span>
2687+
sbase<span class="w"> </span>get<span class="w"> </span>chs<span class="w"> </span><span class="c1"># (For `Chrome-Headless-Shell`)</span>
2688+
</code></pre></div>
2689+
<p>Those commands download those binaries into the <code>seleniumbase/drivers</code> folder.
2690+
To use the binaries from there in SeleniumBase scripts, set the <code>binary_location</code> to <code>cft</code> or <code>chs</code>.</p>
2691+
<p>(Source: https://googlechromelabs.github.io/chrome-for-testing/)</p>
2692+
<hr />
26872693
<p><a href="https://github.com/seleniumbase/SeleniumBase"><img src="https://seleniumbase.github.io/cdn/img/sb_logo_b.png" title="SeleniumBase" width="280"></a></p>
26882694

26892695

other/profile_t2.png

853 KB
Loading

search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

seleniumbase/console_scripts/ReadMe/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2683,9 +2683,11 @@ <h3>get / install</h3>
26832683
sbase<span class="w"> </span>get<span class="w"> </span>chromedriver<span class="w"> </span>stable
26842684
sbase<span class="w"> </span>get<span class="w"> </span>chromedriver<span class="w"> </span>beta
26852685
sbase<span class="w"> </span>get<span class="w"> </span>chromedriver<span class="w"> </span>-p
2686+
sbase<span class="w"> </span>get<span class="w"> </span>cft<span class="w"> </span><span class="m">131</span>
2687+
sbase<span class="w"> </span>get<span class="w"> </span>chs
26862688
</code></pre></div>
2687-
<p>(Drivers: <code>chromedriver</code>, <code>geckodriver</code>, <code>edgedriver</code>,
2688-
<code>iedriver</code>, <code>uc_driver</code>)</p>
2689+
<p>(Drivers: <code>chromedriver</code>, <code>cft</code>, <code>uc_driver</code>,
2690+
<code>edgedriver</code>, <code>chs</code>, <code>geckodriver</code>)</p>
26892691
<p>(Options: A specific driver version or major version integer.
26902692
If not set, the driver version matches the browser.
26912693
<code>-p</code> / <code>--path</code>: Also copy to "/usr/local/bin".)</p>

sitemap.xml

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -2,218 +2,218 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://seleniumbase.io/</loc>
5-
<lastmod>2025-01-21</lastmod>
5+
<lastmod>2025-01-25</lastmod>
66
</url>
77
<url>
88
<loc>https://seleniumbase.io/examples/ReadMe/</loc>
9-
<lastmod>2025-01-21</lastmod>
9+
<lastmod>2025-01-25</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://seleniumbase.io/examples/case_summary/</loc>
13-
<lastmod>2025-01-21</lastmod>
13+
<lastmod>2025-01-25</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://seleniumbase.io/examples/behave_bdd/ReadMe/</loc>
17-
<lastmod>2025-01-21</lastmod>
17+
<lastmod>2025-01-25</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://seleniumbase.io/examples/cdp_mode/ReadMe/</loc>
21-
<lastmod>2025-01-21</lastmod>
21+
<lastmod>2025-01-25</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://seleniumbase.io/examples/chart_maker/ReadMe/</loc>
25-
<lastmod>2025-01-21</lastmod>
25+
<lastmod>2025-01-25</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://seleniumbase.io/examples/dialog_boxes/ReadMe/</loc>
29-
<lastmod>2025-01-21</lastmod>
29+
<lastmod>2025-01-25</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://seleniumbase.io/examples/example_logs/ReadMe/</loc>
33-
<lastmod>2025-01-21</lastmod>
33+
<lastmod>2025-01-25</lastmod>
3434
</url>
3535
<url>
3636
<loc>https://seleniumbase.io/examples/master_qa/ReadMe/</loc>
37-
<lastmod>2025-01-21</lastmod>
37+
<lastmod>2025-01-25</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://seleniumbase.io/examples/migration/raw_selenium/ReadMe/</loc>
41-
<lastmod>2025-01-21</lastmod>
41+
<lastmod>2025-01-25</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://seleniumbase.io/examples/presenter/ReadMe/</loc>
45-
<lastmod>2025-01-21</lastmod>
45+
<lastmod>2025-01-25</lastmod>
4646
</url>
4747
<url>
4848
<loc>https://seleniumbase.io/examples/tour_examples/ReadMe/</loc>
49-
<lastmod>2025-01-21</lastmod>
49+
<lastmod>2025-01-25</lastmod>
5050
</url>
5151
<url>
5252
<loc>https://seleniumbase.io/examples/visual_testing/ReadMe/</loc>
53-
<lastmod>2025-01-21</lastmod>
53+
<lastmod>2025-01-25</lastmod>
5454
</url>
5555
<url>
5656
<loc>https://seleniumbase.io/help_docs/ReadMe/</loc>
57-
<lastmod>2025-01-21</lastmod>
57+
<lastmod>2025-01-25</lastmod>
5858
</url>
5959
<url>
6060
<loc>https://seleniumbase.io/help_docs/behave_gui/</loc>
61-
<lastmod>2025-01-21</lastmod>
61+
<lastmod>2025-01-25</lastmod>
6262
</url>
6363
<url>
6464
<loc>https://seleniumbase.io/help_docs/case_plans/</loc>
65-
<lastmod>2025-01-21</lastmod>
65+
<lastmod>2025-01-25</lastmod>
6666
</url>
6767
<url>
6868
<loc>https://seleniumbase.io/help_docs/chinese/</loc>
69-
<lastmod>2025-01-21</lastmod>
69+
<lastmod>2025-01-25</lastmod>
7070
</url>
7171
<url>
7272
<loc>https://seleniumbase.io/help_docs/commander/</loc>
73-
<lastmod>2025-01-21</lastmod>
73+
<lastmod>2025-01-25</lastmod>
7474
</url>
7575
<url>
7676
<loc>https://seleniumbase.io/help_docs/customizing_test_runs/</loc>
77-
<lastmod>2025-01-21</lastmod>
77+
<lastmod>2025-01-25</lastmod>
7878
</url>
7979
<url>
8080
<loc>https://seleniumbase.io/help_docs/demo_mode/</loc>
81-
<lastmod>2025-01-21</lastmod>
81+
<lastmod>2025-01-25</lastmod>
8282
</url>
8383
<url>
8484
<loc>https://seleniumbase.io/help_docs/desired_capabilities/</loc>
85-
<lastmod>2025-01-21</lastmod>
85+
<lastmod>2025-01-25</lastmod>
8686
</url>
8787
<url>
8888
<loc>https://seleniumbase.io/help_docs/features_list/</loc>
89-
<lastmod>2025-01-21</lastmod>
89+
<lastmod>2025-01-25</lastmod>
9090
</url>
9191
<url>
9292
<loc>https://seleniumbase.io/help_docs/handling_iframes/</loc>
93-
<lastmod>2025-01-21</lastmod>
93+
<lastmod>2025-01-25</lastmod>
9494
</url>
9595
<url>
9696
<loc>https://seleniumbase.io/help_docs/happy_customers/</loc>
97-
<lastmod>2025-01-21</lastmod>
97+
<lastmod>2025-01-25</lastmod>
9898
</url>
9999
<url>
100100
<loc>https://seleniumbase.io/help_docs/hidden_files_info/</loc>
101-
<lastmod>2025-01-21</lastmod>
101+
<lastmod>2025-01-25</lastmod>
102102
</url>
103103
<url>
104104
<loc>https://seleniumbase.io/help_docs/how_it_works/</loc>
105-
<lastmod>2025-01-21</lastmod>
105+
<lastmod>2025-01-25</lastmod>
106106
</url>
107107
<url>
108108
<loc>https://seleniumbase.io/help_docs/html_inspector/</loc>
109-
<lastmod>2025-01-21</lastmod>
109+
<lastmod>2025-01-25</lastmod>
110110
</url>
111111
<url>
112112
<loc>https://seleniumbase.io/help_docs/install/</loc>
113-
<lastmod>2025-01-21</lastmod>
113+
<lastmod>2025-01-25</lastmod>
114114
</url>
115115
<url>
116116
<loc>https://seleniumbase.io/help_docs/install_python_pip_git/</loc>
117-
<lastmod>2025-01-21</lastmod>
117+
<lastmod>2025-01-25</lastmod>
118118
</url>
119119
<url>
120120
<loc>https://seleniumbase.io/help_docs/js_package_manager/</loc>
121-
<lastmod>2025-01-21</lastmod>
121+
<lastmod>2025-01-25</lastmod>
122122
</url>
123123
<url>
124124
<loc>https://seleniumbase.io/help_docs/locale_codes/</loc>
125-
<lastmod>2025-01-21</lastmod>
125+
<lastmod>2025-01-25</lastmod>
126126
</url>
127127
<url>
128128
<loc>https://seleniumbase.io/help_docs/method_summary/</loc>
129-
<lastmod>2025-01-21</lastmod>
129+
<lastmod>2025-01-25</lastmod>
130130
</url>
131131
<url>
132132
<loc>https://seleniumbase.io/help_docs/mobile_testing/</loc>
133-
<lastmod>2025-01-21</lastmod>
133+
<lastmod>2025-01-25</lastmod>
134134
</url>
135135
<url>
136136
<loc>https://seleniumbase.io/help_docs/mysql_installation/</loc>
137-
<lastmod>2025-01-21</lastmod>
137+
<lastmod>2025-01-25</lastmod>
138138
</url>
139139
<url>
140140
<loc>https://seleniumbase.io/help_docs/recorder_mode/</loc>
141-
<lastmod>2025-01-21</lastmod>
141+
<lastmod>2025-01-25</lastmod>
142142
</url>
143143
<url>
144144
<loc>https://seleniumbase.io/help_docs/shadow_dom/</loc>
145-
<lastmod>2025-01-21</lastmod>
145+
<lastmod>2025-01-25</lastmod>
146146
</url>
147147
<url>
148148
<loc>https://seleniumbase.io/help_docs/syntax_formats/</loc>
149-
<lastmod>2025-01-21</lastmod>
149+
<lastmod>2025-01-25</lastmod>
150150
</url>
151151
<url>
152152
<loc>https://seleniumbase.io/help_docs/thank_you/</loc>
153-
<lastmod>2025-01-21</lastmod>
153+
<lastmod>2025-01-25</lastmod>
154154
</url>
155155
<url>
156156
<loc>https://seleniumbase.io/help_docs/translations/</loc>
157-
<lastmod>2025-01-21</lastmod>
157+
<lastmod>2025-01-25</lastmod>
158158
</url>
159159
<url>
160160
<loc>https://seleniumbase.io/help_docs/uc_mode/</loc>
161-
<lastmod>2025-01-21</lastmod>
161+
<lastmod>2025-01-25</lastmod>
162162
</url>
163163
<url>
164164
<loc>https://seleniumbase.io/help_docs/useful_grep_commands/</loc>
165-
<lastmod>2025-01-21</lastmod>
165+
<lastmod>2025-01-25</lastmod>
166166
</url>
167167
<url>
168168
<loc>https://seleniumbase.io/help_docs/using_safari_driver/</loc>
169-
<lastmod>2025-01-21</lastmod>
169+
<lastmod>2025-01-25</lastmod>
170170
</url>
171171
<url>
172172
<loc>https://seleniumbase.io/help_docs/verify_webdriver/</loc>
173-
<lastmod>2025-01-21</lastmod>
173+
<lastmod>2025-01-25</lastmod>
174174
</url>
175175
<url>
176176
<loc>https://seleniumbase.io/help_docs/virtualenv_instructions/</loc>
177-
<lastmod>2025-01-21</lastmod>
177+
<lastmod>2025-01-25</lastmod>
178178
</url>
179179
<url>
180180
<loc>https://seleniumbase.io/help_docs/webdriver_installation/</loc>
181-
<lastmod>2025-01-21</lastmod>
181+
<lastmod>2025-01-25</lastmod>
182182
</url>
183183
<url>
184184
<loc>https://seleniumbase.io/integrations/azure/azure_pipelines/ReadMe/</loc>
185-
<lastmod>2025-01-21</lastmod>
185+
<lastmod>2025-01-25</lastmod>
186186
</url>
187187
<url>
188188
<loc>https://seleniumbase.io/integrations/azure/jenkins/ReadMe/</loc>
189-
<lastmod>2025-01-21</lastmod>
189+
<lastmod>2025-01-25</lastmod>
190190
</url>
191191
<url>
192192
<loc>https://seleniumbase.io/integrations/docker/ReadMe/</loc>
193-
<lastmod>2025-01-21</lastmod>
193+
<lastmod>2025-01-25</lastmod>
194194
</url>
195195
<url>
196196
<loc>https://seleniumbase.io/integrations/github/workflows/ReadMe/</loc>
197-
<lastmod>2025-01-21</lastmod>
197+
<lastmod>2025-01-25</lastmod>
198198
</url>
199199
<url>
200200
<loc>https://seleniumbase.io/integrations/google_cloud/ReadMe/</loc>
201-
<lastmod>2025-01-21</lastmod>
201+
<lastmod>2025-01-25</lastmod>
202202
</url>
203203
<url>
204204
<loc>https://seleniumbase.io/seleniumbase/common/ReadMe/</loc>
205-
<lastmod>2025-01-21</lastmod>
205+
<lastmod>2025-01-25</lastmod>
206206
</url>
207207
<url>
208208
<loc>https://seleniumbase.io/seleniumbase/console_scripts/ReadMe/</loc>
209-
<lastmod>2025-01-21</lastmod>
209+
<lastmod>2025-01-25</lastmod>
210210
</url>
211211
<url>
212212
<loc>https://seleniumbase.io/seleniumbase/masterqa/ReadMe/</loc>
213-
<lastmod>2025-01-21</lastmod>
213+
<lastmod>2025-01-25</lastmod>
214214
</url>
215215
<url>
216216
<loc>https://seleniumbase.io/seleniumbase/utilities/selenium_grid/ReadMe/</loc>
217-
<lastmod>2025-01-21</lastmod>
217+
<lastmod>2025-01-25</lastmod>
218218
</url>
219219
</urlset>

0 commit comments

Comments
 (0)