How to query all the Visualforce Pages the profile have access to in Salesforce?
1. Run the below SOQL to get the PermissionSet Id. SELECT Id, Profile.Name FROM PermissionSet WHERE Profile.Name = 'System Administrator' 2. Use the PermissionSet Id from the step 1 and ....