mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure editable and read-only columns in Query Tool should be identified by icons and tooltips in the column header. Fixes #4667
This commit is contained in:
committed by
Akshay Joshi
parent
5887fb3815
commit
f8f7d5ac6f
@@ -219,3 +219,11 @@ class QueryToolLocators:
|
||||
"//div[label[normalize-space(" \
|
||||
"text())='Show queries generated internally by pgAdmin?']]" \
|
||||
"//div[contains(@class,'toggle btn')]"
|
||||
|
||||
editable_column_icon_xpath = "//div[contains(@class," \
|
||||
" 'editable-column-header-icon')]" \
|
||||
"/i[contains(@class, 'fa-pencil')]"
|
||||
|
||||
read_only_column_icon_xpath = "//div[contains(@class," \
|
||||
" 'editable-column-header-icon')]" \
|
||||
"/i[contains(@class, 'fa-lock')]"
|
||||
|
Reference in New Issue
Block a user