diff --git a/docs/en_US/release_notes_8_11.rst b/docs/en_US/release_notes_8_11.rst index ffa4da912..a44341f62 100644 --- a/docs/en_US/release_notes_8_11.rst +++ b/docs/en_US/release_notes_8_11.rst @@ -20,6 +20,7 @@ Bundled PostgreSQL Utilities New features ************ + | `Issue #2046 `_ - Add a home button to the geometry viewer to set original zoom level when the viewer was opened. Housekeeping ************ @@ -33,6 +34,7 @@ Bug fixes | `Issue #7540 `_ - Fix server heartbeat logging error after deleting the server. | `Issue #7682 `_ - Fixed an issue where the Generate Script ignored filter conditions when a parent node was selected. | `Issue #7683 `_ - Fixed an issue where delete object(shortcut key) affecting both text and Object Explorer items. + | `Issue #7688 `_ - Fix an issue where ERD tool should to be able to open saved pgerd file when using keyboard shortcuts. | `Issue #7728 `_ - Updated the documentation for web server authentication. | `Issue #7737 `_ - Fixed an issue where the REVOKE statement in the create script was throwing an error if the role contained special characters. | `Issue #7754 `_ - Fix an issue where the wheel package is not getting installed on the arm64-based macOS version < 14. diff --git a/web/regression/feature_utils/locators.py b/web/regression/feature_utils/locators.py index be1ba8e29..ee846b8cd 100644 --- a/web/regression/feature_utils/locators.py +++ b/web/regression/feature_utils/locators.py @@ -228,7 +228,7 @@ class QueryToolLocators: "//span[text()='File Format']/following-sibling::div" select_file_content_css = \ - "div [role='grid'] div[aria-selected='true'] span" + "div [role='grid'] div[role='gridcell'] span" query_output_canvas_css = "#id-dataoutput .rdg"