[Sikuli-driver] [Bug 1473920] Re: [IDE] run my sikuli project file: “[error] IDE: A non-IOException-problem when trying to save null Error: null”

2016-05-01 Thread RaiMan
seems to not happen anymore in the latest 1.1.1

** Changed in: sikuli
   Status: Opinion => Fix Committed

** Changed in: sikuli
   Importance: Undecided => Critical

** Changed in: sikuli
Milestone: None => 1.1.1

** Summary changed:

- [IDE] run my sikuli project file: “[error] IDE: A non-IOException-problem 
when trying to save null Error: null”
+ [IDE] IDE: on save with indent errors: A non-IOException-problem when trying 
to save null Error: null --- fixed 1.1.1 2016-05-01+

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1473920

Title:
  [IDE] IDE: on save with indent errors: A non-IOException-problem when
  trying to save null Error: null --- fixed 1.1.1 2016-05-01+

Status in Sikuli:
  Fix Committed

Bug description:
  when i use IDE run my sikuli project file,I meet an error which
  named“[error] IDE: A non-IOException-problem when trying to save null
  Error: null”

  my sikuli project name is  Wechat and my file name  is Wechat.
  wechat file are following


  # -*- coding: utf-8 -*-
  from __future__ import with_statement
  from sikuliwrapper import *
  addImagePath(common.cfgImageLibrary)

  class Wechat(BaseLogger):
ROBOT_LIBRARY_SCOPE = 'TEST SUITE'

def __init__(self):
self.appCoordinates = (0, 0, 1024, 768)

def startwechat(self):
click("wechat_icon.png")
wait(5)
click("more.png")
wait(5)
click("switch_account.png")
wait(5)
click("login_type.png")
wait(5)
click("account.png")
wait(5)
Settings.TypeDelay = 1
type("2919658499\n")
wait(5)
click("password.png")
wait(5)
Settings.TypeDelay=1
type("wanshen1\n")
wait(5)
click("login_button.png")   
  def search_public_number(self)
  click("search_button.png")
  wait(2)
Settings.TypeDelay=1
type("睿博研发")
  
  

def runTest(self):
self.startwechat()
self.search_public_number()
  
  if __name__ == '__main__':
Wechat().runTest() 


  
  best regard 
  thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1473920/+subscriptions

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Bug 1473920] Re: [IDE] run my sikuli project file: “[error] IDE: A non-IOException-problem when trying to save null Error: null”

2016-04-20 Thread tranquillo
Error occurs in Version 1.1.0 until today if a indenting is more left
than the encircling structure.

Example:

class Foo():
  def bar(self):
print "john"  <-- no problem
 print "doh"  <--produce the error

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1473920

Title:
  [IDE] run my sikuli project file: “[error] IDE: A non-IOException-
  problem when trying to save null Error: null”

Status in Sikuli:
  Opinion

Bug description:
  when i use IDE run my sikuli project file,I meet an error which
  named“[error] IDE: A non-IOException-problem when trying to save null
  Error: null”

  my sikuli project name is  Wechat and my file name  is Wechat.
  wechat file are following


  # -*- coding: utf-8 -*-
  from __future__ import with_statement
  from sikuliwrapper import *
  addImagePath(common.cfgImageLibrary)

  class Wechat(BaseLogger):
ROBOT_LIBRARY_SCOPE = 'TEST SUITE'

def __init__(self):
self.appCoordinates = (0, 0, 1024, 768)

def startwechat(self):
click("wechat_icon.png")
wait(5)
click("more.png")
wait(5)
click("switch_account.png")
wait(5)
click("login_type.png")
wait(5)
click("account.png")
wait(5)
Settings.TypeDelay = 1
type("2919658499\n")
wait(5)
click("password.png")
wait(5)
Settings.TypeDelay=1
type("wanshen1\n")
wait(5)
click("login_button.png")   
  def search_public_number(self)
  click("search_button.png")
  wait(2)
Settings.TypeDelay=1
type("睿博研发")
  
  

def runTest(self):
self.startwechat()
self.search_public_number()
  
  if __name__ == '__main__':
Wechat().runTest() 


  
  best regard 
  thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1473920/+subscriptions

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Bug 1473920] Re: [IDE] run my sikuli project file: “[error] IDE: A non-IOException-problem when trying to save null Error: null”

2015-07-13 Thread RaiMan
which version of SikuliX?

** Summary changed:

- when i use IDE run my sikuli project file,I meet an error which named“[error] 
IDE: A non-IOException-problem when trying to save null Error: null”
+ [IDE] run my sikuli project file: “[error] IDE: A non-IOException-problem 
when trying to save null Error: null”

** Changed in: sikuli
   Status: New = Opinion

** Changed in: sikuli
 Assignee: (unassigned) = RaiMan (raimund-hocke)

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1473920

Title:
  [IDE] run my sikuli project file: “[error] IDE: A non-IOException-
  problem when trying to save null Error: null”

Status in Sikuli:
  Opinion

Bug description:
  when i use IDE run my sikuli project file,I meet an error which
  named“[error] IDE: A non-IOException-problem when trying to save null
  Error: null”

  my sikuli project name is  Wechat and my file name  is Wechat.
  wechat file are following


  # -*- coding: utf-8 -*-
  from __future__ import with_statement
  from sikuliwrapper import *
  addImagePath(common.cfgImageLibrary)

  class Wechat(BaseLogger):
ROBOT_LIBRARY_SCOPE = 'TEST SUITE'

def __init__(self):
self.appCoordinates = (0, 0, 1024, 768)

def startwechat(self):
click(wechat_icon.png)
wait(5)
click(more.png)
wait(5)
click(switch_account.png)
wait(5)
click(login_type.png)
wait(5)
click(account.png)
wait(5)
Settings.TypeDelay = 1
type(2919658499\n)
wait(5)
click(password.png)
wait(5)
Settings.TypeDelay=1
type(wanshen1\n)
wait(5)
click(login_button.png)   
  def search_public_number(self)
  click(search_button.png)
  wait(2)
Settings.TypeDelay=1
type(睿博研发)
  
  

def runTest(self):
self.startwechat()
self.search_public_number()
  
  if __name__ == '__main__':
Wechat().runTest() 


  
  best regard 
  thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1473920/+subscriptions

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp