cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Double click not working in python

Former Member
0 Likes
3,683

Hi,

I'm trying to access information by double click on a cell and it is not working. After the entering into the screen i'm unable to print any details. the automation fails.

session.findById("wnd[0]/usr/cntlIMAGE_CONTAINER/shellcont/shell/shellcont[0]/shell").selectedNode = "0000000022"
session.findById("wnd[0]/usr/cntlIMAGE_CONTAINER/shellcont/shell/shellcont[0]/shell").doubleClickNode("0000000022")
session.findById("wnd[0]/usr/ctxtER_STAT").text = "R"
session.findById("wnd[0]/usr/ctxtER_BP2-LOW").text = b+"*"
session.findById("wnd[0]/usr/ctxtER_RTN_D-LOW").text = today
session.findById("wnd[0]/usr/ctxtER_RTN_D-HIGH").text = today
session.findById("wnd[0]/tbar[1]/btn[8]").press()
---Code works fine until here The screen with the information reflects-- The below code does not work-            
print("In the details page")
session.findById("wnd[0]/usr/lbl[3,5]").setFocus()
print("focus")
session.findById("wnd[0]/usr/lbl[3,5]").caretPosition = 0
session.findById("wnd[0]").sendVKey(2)
print("Success")

Attached is image of the view. I'm unable to change this to a grid view.

Regards,
Renato.



View Entire Topic
daniel_mccollum
Active Contributor

hard to say with the info provided, but try

session.findById("wnd[0]").sendVKey 19

to display the focused data in a pop-up.

Former Member
0 Likes

Hi Daniel,

I'm entering date and type to come to the screenshot that i shared. To go to the next screen when i do it manually i need to double click on the row and it provides the required data. The problem is that when i go to the next screen the code fails.

Sandra_Rossi
Active Contributor
0 Likes

sendVKey 2 = F2 (same as double-click)

sendVKey 19 = Shift+F7 (same as ALV List function code &CRE "Last Column" ?)