Using SendKey in NSL - novell

All,
If anyone has experience working on NSL (Novell SecureLogin), I am trying to use the command SendKey "\|123" to send the F12 command, but there is no subsequent action taking place and nor any error. I tried googling out, but could not find much help. I have tried SendKey "{F12}" and SendKey ("{F12}") as well. Can anyone please let me know the appropriate command used to issue F12 key command.

Have you tried using it via Type instead of Sendkey?

Related

Can't use javascript debug terminal anymore

I've previously been able to use the debug terminal without any issue, but now when I try to open it (by clicking the little down arrow next to the new terminal plus symbol and clicking "JavaScript Debug Terminal". I get the following error:
No Terminal profile provider registered for id "extension.js-debug.debugTerminal"
I've googled and come up empty handed. Does anyone know what could be causing this?
Thansk in advance!

Why does the Spyder debugger seem totally unresponsive?

I'm new to trying out Spyder, and attempting to debug. I'm very familiar with Matlab's debugging, which Spyder's appears similar to.
Unfortunately, when I enter debug mode, the debug menu buttons and hotkeys are unresponsive; nothing happens when I click or type them. I have no idea where to start to resolve this. I can start the debugger, which opens the ipdb console, without issue. But then it's totally unresponsive to anything other than literally typing into the ipdb console (e.g., 'quit', or define variables [which does work])
Does anyone have any suggestions? Or is there followup information that could be helpful? Thanks in advance!
In case this is useful to anyone in the future, this was solved with a full un-install / re-install of anaconda. I don't know what the original problem was.

weird symbols getting printed when press alt and arrow key in Visual Studios

My system is printing symbols like (♠ ◘ ☻) these when i try to move cursor using alt key, which is causing problems while programming. Please help.
I have checked keyboard layout and setting, language setting, sticky keys and searched google and found nothing.
I dont know, if this is off topic here or not. If it is please let me know where can i get help regarding this.
thanks
I couldn't figure out a way to fix this with just windows, but I found that you can get around this with Autohotkey.
see: https://superuser.com/questions/668394/how-to-turn-off-alt-numeric-keypad-ascii-symbol-insertion

Firefox bug with Selenium - Can't access dead object

I've tried to run my tests with Selenium 2 and Firefox 19. One of this tests causes an error "ERROR: Command execution failure. The error message is: can't access dead object".
I'm reading about it, it seems like a bug in newest Firefox's versions. Lot of people have the same issue, but I've not found anything really clear.
Any heroe can help us? Maybe we just need to change something in "about:config"?
Regards
I was desperate about the same Problem and didn't find any solution although many people seemed to have the same problem.
I solved it by calling
webDriver.switchTo().defaultContent();
before calling any findElement method
(using Java)
This error generally comes when you do no switch back from frame and trying to access web elements directly.
Use driver.switchTo().defaultContent(); and then try to access the elements
I finally made a "cheat" to the browser.
I got the fail when Selenium clicked on a link and try to open the new page. What I've made is just simulate the click, doing a selenium.open("URL") which replace selenium.click("link=ButtonWhichOpenTheURL").
It seems to work by the moment
I am facing the same error on Firefox 23 while reopening a pop up browser window. The only workaround I did is closing the current selenium session and relaunching it again. It worked fine for me.

How to find source of print() or NSLog() console output in Xcode

I'm not sure if this is possible. Here is an example situation:
Something is printing to my console and I don't know where it is coming from in the code. I did a quick search using the Finder in Xcode on terms such as 'NSLog' and 'print'. Nothing relevant came up.
Is there any quick way that Xcode has of finding where the source of the output is coming from ?
Kind of like when you right click on a method and you have all the options of exploring different parts of the code associated with that method.
Also: are there other functions that print besides NSLog and print?
Thanks so much!
Try running in the debugger, with breakpoints set on printf, NSLog, etc. When you hit a breakpoint do a backtrace (bt) to see where it's being called from
There's a plugin LinkedLog for that. You replace all NSLogs with LLogs and then will be able to just tap on link in Xcode's console to get to the line caused it to appear.
Didn't try it myself, but definitely will.

Resources