File tree Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 8
8
<p align =" center " ><a href =" https://github.com/seleniumbase/SeleniumBase/ " ><img src =" https://seleniumbase.io/cdn/img/super_logo_i.png " alt =" SeleniumBase " title =" SeleniumBase " width =" 300 " /></a ></p >
9
9
<!-- View on GitHub -->
10
10
11
- <p align =" center " ><div align =" center " >Fast, easy, and reliable Web/UI testing with < b > Python</ b > . ✅</div ></p >
11
+ <p align =" center " ><div align =" center " >Fast, easy, and reliable Web/UI testing with Python. ✅</div ></p >
12
12
13
13
<p align =" center " >
14
14
<a href =" https://github.com/seleniumbase/SeleniumBase/releases " >
Original file line number Diff line number Diff line change @@ -16,15 +16,10 @@ def test_hack_search(self):
16
16
self .sleep (0.5 )
17
17
self .js_click ('[value="Bing Search"]' )
18
18
self .highlight ("h1.b_logo" )
19
- help_docs_install_link = 'a[href*="seleniumbase.io/help_docs/install"]'
20
- if self .is_element_visible (help_docs_install_link ):
21
- self .highlight_click (help_docs_install_link )
22
- self .assert_text ("Install SeleniumBase" , "h1" )
23
- self .click_link ("GitHub branch" )
24
- self .highlight_click ('a[href*="/seleniumbase/SeleniumBase"]' )
25
- self .assert_element ('[href="/seleniumbase/SeleniumBase"]' )
26
- self .assert_true ("seleniumbase/SeleniumBase" in self .get_current_url ())
19
+ self .highlight_click ('[href*="github.com/seleniumbase/SeleniumBase"]' )
20
+ self .highlight_click ('[href="/seleniumbase/SeleniumBase"]' )
27
21
self .highlight_click ('a[title="examples"]' )
28
22
self .assert_text ("examples" , "strong.final-path" )
29
- self .highlight_click ('[title="test_hack_search.py"]' )
23
+ self .highlight_click ('a [title="test_hack_search.py"]' )
30
24
self .assert_text ("test_hack_search.py" , "strong.final-path" )
25
+ self .highlight ("strong.final-path" )
Original file line number Diff line number Diff line change 6
6
<a href =" https://seleniumbase.io/help_docs/features_list/ " >🎯 Features</a > |
7
7
<a href =" https://seleniumbase.io/help_docs/customizing_test_runs/ " >🎛️ Options</a >
8
8
<br />
9
- <a href =" https://seleniumbase.io/examples/ReadMe/ " >✅ Examples</a > |
9
+ <a href =" https://seleniumbase.io/examples/ReadMe/ " >📝 Examples</a > |
10
10
<a href =" https://seleniumbase.io/help_docs/mobile_testing/ " >📱 Mobile</a >
11
11
<br />
12
- <a href =" https://seleniumbase.io/help_docs/syntax_formats/ " >🔠 Syntax Formats</a > |
13
- <a href =" https://seleniumbase.io/integrations/github/workflows/ReadMe/ " >🤖 CI</a >
12
+ <a href =" https://seleniumbase.io/help_docs/syntax_formats/ " >🔠 Formats</a > |
13
+ <a href =" https://seleniumbase.io/integrations/github/workflows/ReadMe/ " >🤖 CI/CD </a >
14
14
<br />
15
15
<a href =" https://seleniumbase.io/help_docs/method_summary/ " >📚 API</a > |
16
16
<a href =" https://seleniumbase.io/examples/example_logs/ReadMe/ " >📊 Reports</a > |
31
31
<a href =" https://seleniumbase.io/help_docs/recorder_mode/ " >🔴 Recorder</a > |
32
32
<a href =" https://github.com/seleniumbase/SeleniumBase/tree/master/integrations/node_js " >🏃 NodeRunner</a >
33
33
<br />
34
- <a href =" https://seleniumbase.io/examples/presenter/ReadMe/ " >🎞️ Presenter </a > |
35
- <a href =" https://seleniumbase.io/examples/chart_maker/ReadMe/ " >📊 ChartMaker </a >
34
+ <a href =" https://seleniumbase.io/examples/presenter/ReadMe/ " >🎞️ Slides </a > |
35
+ <a href =" https://seleniumbase.io/examples/chart_maker/ReadMe/ " >📊 Charts </a >
36
36
</p >
37
37
38
38
--------
Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "3.1.3 "
2
+ __version__ = "3.1.4 "
Original file line number Diff line number Diff line change @@ -661,6 +661,11 @@ def main(override=None):
661
661
print ("Making [%s %s] executable ..." % (driver_file , use_version ))
662
662
make_executable (driver_path )
663
663
print ("%s[%s] is now ready for use!%s" % (c1 , driver_file , cr ))
664
+ if copy_to_path and os .path .exists (LOCAL_PATH ):
665
+ path_file = LOCAL_PATH + f_name
666
+ shutil .copyfile (new_file , path_file )
667
+ make_executable (path_file )
668
+ print ("Also copied to: %s%s%s" % (c3 , path_file , cr ))
664
669
print ("" )
665
670
elif name == "operadriver" :
666
671
if len (contents ) > 3 :
You can’t perform that action at this time.
0 commit comments