Postman App on windows: Unable to see application menu and update tab on settings dialog - postman

I am using the free postman app on win 7.
I am unable to see application menu and update tab on settings dialog.
I have enabled debugging for packed apps as shown below.
Debugging for packed apps Mac, Windows, Linux, Chrome OS Enables
debugging context menu options such as Inspect Element for packed
applications. #debug-packed-apps Disable
Is there any way to get these items?

I am also using Postman Windows app on Win7.
I am getting all those options.
What version are using, the current is v4.10.3.
You may try to uninstall the existing one and re-install the current version.

So there is a native app and there is a chrome app i.e. Postman for windows and Postman for Chrome.
The Postman for Windows app has the options Certificates and Update but i didn't see the same on Chrome App.
Also, the interceptor is an add-on on the chrome app whereas the windows native app provides a proxy settings option.

Related

Windows 10 IoT embedded, trying to get a console app debugging/deployed using Visual Stuido 2019

I've been trying to get a 'console application' to deploy and debug on my embedded Win10 device but I just can't seem to figure it out.
I can get an application to deploy, which requires a 'SquareLogo' screen to come up and I can't figure how to have this 'window' hide or be a headless app.
I can set in the property pages of my app "Property Pages - Configuration Properties - Linker - System - SubSystem" to 'Console (SUBSYSTEM:CONSOLE) and the console window will display on the embedded device but the app screen comes up and the console window will not take any input, from the keyboard.
So in summation I want to debug (Remote Machine) to my embedded Win10 device with a console application.
I'm writing my app in C++.
I won't think it would be this hard but I just can't get the applications main window to not display at startup.
Any help would be appreciated.
Thanks
For Windows IoT Core, you can debug console app using Remote Console App Debugging in Visual Studio. You need to start visual studio debugger on Windows IoT Core in Device Portal.
Please refer to this document.
Debug your app using Remote Console App Debugging
BTW, IoT Core is a UWP centric OS and UWP apps are its primary app type.Since that , traditional UI app can not work on Windows IoT Core, it means Windows IoT Core does not support MFC or ATL APIs.If you want to run a headless app on Windows IoT Core, we recommend you to use Background Applications.

On page reload ionic 4 app doesn’t allow to key in any input

We have ionic 4 web app, this application is deployed to AWS i.e. www folder. When I open the application it opens and I can perform required operations, but when I reload the application I can not key in any input and navigate from segments the app is totally blocked, not sure why is this happening only in my system. Is it an issue of lazy loading of components or issue with the browsers I am using?
When I right click and do inspect on chrome browser the block is released and I am able to key in input and navigate through out the app.
Please help me fix this issue. I mentioned my system config where I was testing this app. So far I have tried in chrome having 76.0 version and on microsoft edge having version 44.18362 browsers and my system config is OS: Windows 10, 64bit OS, Processor: i7, RAM: 8GB
Solution to fix this issue is to add the Cordova browser platform to your ionic app and do a prod build for browser.

How to Debug Ionic WebApp?

I want to debug my ionic application in WebStorm.
I am able to run the app in browser. But how can I debug?
I tried: ionic serve --debug which doesn't seem to trigger any debugging?
How can I debug the app when it runs in browser?
With Chrome you can type chrome://inspect into your address bar
As soon as you are running your Android app, you can inspect the app when you are running it with the "ionic run android" or "ionic emulate android" command
The version of Android, however, must be higher than 4.3 I think...
According to the documentation there's a few different way's to do this. Also could you try one of these listed below since you have tried ionic serve already?
ionic run
ionic emulate
The run or emulate command will deploy the app to the specified platform devices/emulators. You can also run live reload on the specified platform device by adding the --livereload option. The live reload functionality is similar to ionic serve, but instead of developing and debugging an app using a standard browser, the compiled hybrid app itself is watching for any changes to its files and reloading the app when needed. This reduces the requirement to constantly rebuild the app for small changes.
Hope this get's you going! Let me know how it work's out for you.
I found this tool very useful, you can attach your device and get a real time inspector on your Cordova app(for iOS and Android platforms).
The browser is where I do most of my debugging for ionic. What browser are you using to do the debugging? I use Chrome and turn on DevTools. There is a source tab where you can browse your app code to find spots for breakpoints. For example, you can set a breakpoint in the code for a controller on a click event and step through the code. Then, you can use the console to execute commands to test values and inspect objects, etc. Are you unable to make this work? Or, unfamiliar w/ the DevTools? If unfamiliar, there is a resource available here. If not working, are the breakpoints not being hit?
There are a few ways to debug your ionic app.
In the browser you can catch the errors in the console.
If you are emulating your app on a simulator or a mobile device you can install the cardova plugin that displays js errors in the xcode console. So you can emulate your device and catch errors on xcode.
Here is how you add the plugin:
cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-console.git
An alternative is using ionicLab. It worked for me doing the steps: Install the program and prepare all the project dependencies prior to testing. Then, click on Serve option from Testing which is under Platform menu. When the project has been executed, click on the arrow icon of the Preview bar.
As a result, Ionic will throw a Chrome window with the loaded project, so, you can use Developer Tools as it's used commonly. You ought to watch the javascript files, which you use in your project, so that you can debug them.
Simply run: ionic serve -l and inspect from browser developer options.

Unit testing for FirefoxOS packaged app

I want to write a unit testing code for a Firefox OS packaged app.
src/manifest.webapp
src/app.html
src/app.js
test/manifest.webapp
test/unittest.html
test/unittest.js
Is there a way to load app.js from unittest.html?
<script src="../src/app.js"></script>
This doesn't work when I launch unittest.html as a packaged app.
Made an example and it works for me. Take a look at https://dl.dropboxusercontent.com/u/134884/packagedtest.zip . I tried it in a Firefox 1.2 Simulator using the App Manager from Firefox Nightly, if it makes any difference.
Something else must be the issue. Use the developer tools to connect to the simulator to see if there are any relevant errors in the console. If you are using the App Manager, just click the "Debug" button bellow the app to do that. If you are using the Simulator 1.1 add-on, click the "Connect" button next to the app.

Google visualization API doesn't work in IE9

I'm trying to use Google Visualization API to generate Pie charts. My implementation is working on all the browsers except IE 9.
Not sure if there is any fix for this. When I try to open the page in IE 9, it shows a popup to install the Google chrome frame. But this wasn't working even after installing the chrome frame.
I've even tried the Google code playground, the same problem in IE 9. So, I confirmed myself that it is something to do with the IE 9.
Has anyone got any idea?
I finally figured out that the issue is - Chrome framework plugin hasn't been enabled when I've installed i.e.; by default this plugin was not enabled.
We need to manually enable it (after the installation, when you restart the browser IE displays you a popup showing plugin is ready with two button Enable and Don't enable).
I'm giving you the screenshot of the plugins dialog (You can go to the below screen from Tools -> Manage add-ons)
After enabling, make sure you restart the browser and refresh the page which is using the Visualization framework.
Unfortunately, end user has to install this in order to get this work in IE 9 which is really a bad user experience.