function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SFDC Forum 9SFDC Forum 9 

How to find out the object of any buttons in console app

Hi , 

I have buttons called "Request search"  on service console, when i click on it ,another vf page opens in browser\tab,
then I will have to enter request ID and search, then it connects to web service and fetch details for me.
--So here,  my query is , how to find out the the "Request search" button is under which object?
-- How to find which VF page is being opened when i click on any button??

Note:: could not find the VF name in URL.
Best Answer chosen by SFDC Forum 9
ShirishaShirisha (Salesforce Developers) 
Hi,

No,console logs can be used to find which component is being invoked as well.

User-added image
As shown in the above picture,you can see the components list.

Thank you!

All Answers

ShirishaShirisha (Salesforce Developers) 
Hi,

Greetings!

I would suggest you to check the browser cosole logs for components in which you can figure out which component/page is being invoked.

https://help.salesforce.com/articleView?id=How-to-capture-JS-Console-log-files&language=en_US&type=1

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future.

Warm Regards,
Shirisha Pathuri
SFDC Forum 9SFDC Forum 9
Hi Shirisha,

Good to hear from you.

Here I am not asking for error log or something.

When clcik on button ,everything works as expected.But as i am new to development, i dont know how to check which vf page is getting called.
So as per some blogs, they are suggesting to navigate to object   and then search under "Buttons & actions"  , here I want suggestion to find out """which VF page is getting called or  how to find out object of any button""


I am referring classic app here , not lightning
ShirishaShirisha (Salesforce Developers) 
Hi,

No,console logs can be used to find which component is being invoked as well.

User-added image
As shown in the above picture,you can see the components list.

Thank you!
This was selected as the best answer