How to enable accessibility in chrome browser without installing firefox?
-
I am trying to access of Google Chrome's web-page to read it and perform some actions for that I have to enable accessibility for chrome below is my sample code but it is not working for chrome. IAccessible *pCAcc .. ... IServiceProvider *pServProv = NULL; pCAcc->QueryInterface(IID_IServiceProvider, (void**)&pServProv); ISimpleDOMNode *pNode = NULL; if (pServProv) { const GUID refguid = {0x0c539790, 0x12e4, 0x11cf, 0xb6, 0x61, 0x00, 0xaa, 0x00, 0x4c, 0xd6, 0xd8}; HRESULT hresult = pServProv->QueryService(refguid, IID_ISimpleDOMNode,(void**)&pNode); //This QueryService call is failing for chrome browser. BUT but if install "FireFox //browser " in my system this // QueryService is working for chrome and firefox perfectly. if (SUCCEEDED(hresult) && pNode != NULL) { //some code } } What I have tried: if install "FireFox browser " in my system this QueryService is working for chrome and firefox perfectly. MY Question is :Is there a way to get it to work "chrome browser" without having firefox installed in my computer? Can anyone explain what are that component or module or dlls are installed with FF browser.
-
I am trying to access of Google Chrome's web-page to read it and perform some actions for that I have to enable accessibility for chrome below is my sample code but it is not working for chrome. IAccessible *pCAcc .. ... IServiceProvider *pServProv = NULL; pCAcc->QueryInterface(IID_IServiceProvider, (void**)&pServProv); ISimpleDOMNode *pNode = NULL; if (pServProv) { const GUID refguid = {0x0c539790, 0x12e4, 0x11cf, 0xb6, 0x61, 0x00, 0xaa, 0x00, 0x4c, 0xd6, 0xd8}; HRESULT hresult = pServProv->QueryService(refguid, IID_ISimpleDOMNode,(void**)&pNode); //This QueryService call is failing for chrome browser. BUT but if install "FireFox //browser " in my system this // QueryService is working for chrome and firefox perfectly. if (SUCCEEDED(hresult) && pNode != NULL) { //some code } } What I have tried: if install "FireFox browser " in my system this QueryService is working for chrome and firefox perfectly. MY Question is :Is there a way to get it to work "chrome browser" without having firefox installed in my computer? Can anyone explain what are that component or module or dlls are installed with FF browser.
-
I am trying to access of Google Chrome's web-page to read it and perform some actions for that I have to enable accessibility for chrome below is my sample code but it is not working for chrome. IAccessible *pCAcc .. ... IServiceProvider *pServProv = NULL; pCAcc->QueryInterface(IID_IServiceProvider, (void**)&pServProv); ISimpleDOMNode *pNode = NULL; if (pServProv) { const GUID refguid = {0x0c539790, 0x12e4, 0x11cf, 0xb6, 0x61, 0x00, 0xaa, 0x00, 0x4c, 0xd6, 0xd8}; HRESULT hresult = pServProv->QueryService(refguid, IID_ISimpleDOMNode,(void**)&pNode); //This QueryService call is failing for chrome browser. BUT but if install "FireFox //browser " in my system this // QueryService is working for chrome and firefox perfectly. if (SUCCEEDED(hresult) && pNode != NULL) { //some code } } What I have tried: if install "FireFox browser " in my system this QueryService is working for chrome and firefox perfectly. MY Question is :Is there a way to get it to work "chrome browser" without having firefox installed in my computer? Can anyone explain what are that component or module or dlls are installed with FF browser.
-
Did you debug the code before and after you installed FireFox ? Maybe in this way you can know what exactly is not working in your code.
Yes I debug the code when FF installed QueryService(...) is return success. if I uninstalled FF browser it returns fail "hresult = E_FAIL" I am assuming some components or dlls are installing after FF browser installed so that chrome also working. I want to know what dlls installing with FF browser
-
Yes I debug the code when FF installed QueryService(...) is return success. if I uninstalled FF browser it returns fail "hresult = E_FAIL" I am assuming some components or dlls are installing after FF browser installed so that chrome also working. I want to know what dlls installing with FF browser
-
Yes I debug the code when FF installed QueryService(...) is return success. if I uninstalled FF browser it returns fail "hresult = E_FAIL" I am assuming some components or dlls are installing after FF browser installed so that chrome also working. I want to know what dlls installing with FF browser
The program that I am talking about is called RegShot[^], I haven't had it anymore, but as far I am see now, I don't know if it tell you about dll's, but you can retrieve valuable data when you install something, even Firefox. Short documentation: How to Use Regshot To Monitor Your Registry[^]