-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
General "house cleaning" update... Refactored WebDriverManager class: - Incorporated recently published ChromeDriver release end-points that do not require json parsing - Added "channel" argument to GetLatestDriverVersion method [@6DiegoDiego9] - Improved use of RegExp for searching/parsing - General code cleanup Reviewed object instantiation: - Removed New_WebElement & New_WebShadowRoot methods of ClassFactory class - these cannot be instantiated with New keyword - Bug fix: if WebElements class is instantiated with New and element objects added with Add method, Highlight and UnHighlight fail - Added example in test_Highlight module to test above bug fix - Set class attribute VB_Creatable = False in DLL for all classes that cannot be instantiated with New - Added table to "Object Instantiation" section of Wiki summarizing means of instantiation for each class Removed all DEPRECATED methods/properties (see #86) Renamed GetAlertText method of WebAlert class to GetText Changed RemoveAll method of WebCookies and WebElements classes from Friend to Public to be consistent with associated Public Remove methods in same classes Bug fix: new (default) Json Viewer feature of Edge browser broke PageToJson* methods - now supported Added SwitchTo method to WebWindow class (synonym for Activate method) Replaced all instantiations of WebJsonConverter object with predeclared reference [@6DiegoDiego9] Modified test modules code for all of above DLL installer now checks for 64-bit Office and reports to user if not [private email from user] Replaced BuildAddin.xlsm in dev\tools with a refactored and more complete UpdateVersion.xlsm Updated Readme files, Wiki Help topics, and Object Model Overview Minor code cleanups
- Loading branch information
Showing
38 changed files
with
478 additions
and
547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
The BuildAddin.xlsm provides functionality for (re)building the SeleniumVBA.xlam macro file and for publishing GitHub components (source, zip file, etc). Advanced knowledge of working with GitHub Desktop and the VBIDE object model is required. Please note if all that is needed is a copy of SeleniumVBA.xlam, then download the xlam (or zip) file from the "dist" folder. The macro provided here is intended to make life easier for contributors/collaborators - modify as you see fit. | ||
The UpdateVersion.xlsm macro Workbook provides functionality for (re)building the SeleniumVBA.xlam and SeleniumVBA.accdb macro files and for publishing GitHub components (source, zip file, etc). Advanced knowledge of working with GitHub Desktop and the VBIDE object model is required. Please note if all that is needed is a copy of SeleniumVBA.xlam, then download the xlam file from the "dist" folder. The macros provided here are intended to make life easier for contributors/collaborators. I have spent little effort making this user-friendly - modify as you see fit. |
Binary file renamed
BIN
+1.97 MB
dev/twinBasic/SeleniumVBA_4.4fix.twinproj → dev/twinBasic/SeleniumVBA.twinproj
Binary file not shown.
Binary file modified
BIN
-9.71 KB
(93%)
dev/twinBasic/no_registration/SeleniumVBA test subs for tB no reg.xlsm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
7ffc042
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, another great update!
Thank you so much Mike!