You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2022/01/18 20:21:51 UTC

[GitHub] [cordova-plugin-inappbrowser] serkangunes opened a new issue #929: Ionic 5 React - Android simulator can't interact with the page

serkangunes opened a new issue #929:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/929


   # Bug Report
   I can successfully open the URL however I can't interact with the page.
   - I can't scroll
   - I can change focus etc.
   
   Cursors are visible and blinking.
   
   <img width="515" alt="Screenshot 2022-01-18 at 20 20 52" src="https://user-images.githubusercontent.com/1506713/150012505-d31726b8-4705-4768-838d-9db36627920f.png">
   
   ## Problem
   The page is getting blocked by something.
   
   ### What is expected to happen?
   I should be able to interact with the page normally.
   
   ### What does actually happen?
   - I can't scroll the page
   - I can't click anywhere.
   - All the events seems to be ignored.
   
   ## Information
   <!-- Include all relevant information that might help understand and reproduce the problem -->
   This is the code I am trying to run.
   
   ```ts
   useEffect(() => {
       const browser = InAppBrowser.create('https://en.wikipedia.org/wiki/Main_Page', '_blank', {
         location: 'no',
         clearcache: 'yes',
         clearsessioncache: 'yes',
         cleardata: 'yes',
         closebuttoncaption: 'Close',
         disallowoverscroll: 'yes',
         hidenavigationbuttons: 'yes',
         fullscreen: 'yes'
       });
       browser.on('loadstart').subscribe((event) => {
         console.debug('loadstart', event);
       });
   
       browser.on('loaderror').subscribe((event) => {
         console.debug('loaderror', event);
       });
       browser.on('loadstop').subscribe((event) => {
         browser.insertCSS({ code: 'div{yellow: red !important;' });
       });
       browser.on('beforeload').subscribe((event) => {
         console.debug('beforeload', event);
       });
       browser.on('customscheme').subscribe((event) => {
         console.debug('customscheme', event);
       });
       browser.on('message').subscribe((event) => {
         console.debug('message', event);
       });
       browser.on('exit').subscribe((event) => {
         console.debug('exit', event);
       });
     }, []);
   ```
   
   I am running the simulator in Mac OS Big Sur intel based laptop.
   Emulator is Pixel 5 API level 30. I am using Java 1.8
   
   ### Version information
   <!-- 
   What are relevant versions you are using?
   For example:
   Cordova: Cordova CLI, Cordova Platforms, Cordova Plugins 
   Other Frameworks: Ionic Framework and CLI version
   Operating System, Android Studio, Xcode etc.
   -->
   I am using plugin version: 5.0.0
   Ionic 5 with React
   Ionic CLI version is 6.18.1
   
   IOS works as expected
   
   - [x] I searched for existing GitHub issues
   - [x] I updated all Cordova tooling to most recent version
   - [x] I included all the necessary information above
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-inappbrowser] serkangunes commented on issue #929: Ionic 5 React - Android simulator can't interact with the page

Posted by GitBox <gi...@apache.org>.
serkangunes commented on issue #929:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/929#issuecomment-1017213479


   Seems like issue only exist on Pixel 5 Emulator. It works perfectly on Pixel3_a Emulator. Closing.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-inappbrowser] serkangunes closed issue #929: Ionic 5 React - Android simulator can't interact with the page

Posted by GitBox <gi...@apache.org>.
serkangunes closed issue #929:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/929


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org