Automation of UI using shellscript


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Automation of UI using shellscript
# 8  
Old 12-13-2011
Hi balajesuri,



plz find the attachment ,contains the shotscreen of UI. here for each alertid we are applying (only for "assigned" status) to investigate/unassignalert/Add to case/Export to excel/export to pdf using action drop down menu.


so manually it takes time . so i want to pass such a file which contains all the alertids .


logic is same , but i dont know how to use api here . how to collect all the ids from ui (i think i can take it from database not sure to use)


such type of scenario is possible using shellscript or perl script???


also help me to solve this , i dont know how to write shellscript for ui automation ??

if u have any much more idea u can shre here...


Thanks
# 9  
Old 12-13-2011
Ask the dev team, if there're API's available for this task. That would make it so much simpler to implement using Shell/Perl. Automating such tasks using shell/perl would be mammoth of a task, if there aren't API's available. I'd say, it's not advisable to put in so much effort for such a simple task (to allot an action for assigned status). Though I've come across similar UI cases before, I had the luxury of using API's which made my task simpler in shell/perl.

Let's see if any other member has a solution. It would be an opportunity for me to learn too.
# 10  
Old 12-13-2011
Actully Its not only for such a assigned task ((to allot an action for assigned status)..

If this is succesful, i can try implement this code for complete UI :-) .

and how can i take the help of dev team, u mean my team ??.. i am using this site but not much more familier with all the information?

Last edited by aish11; 12-14-2011 at 03:50 AM..
# 11  
Old 12-14-2011
ca n any one explore this .... because in our group no one has much more idea???
# 12  
Old 12-16-2011
HI All,


Need your help Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Telnet shellscript

cat << EOF | telnet alt1.aspmx.l.google.com 25 HELO verify-email.org MAIL FROM: <check@verify-email.org> RCPT TO: <test@gmail.com> quit EOF Hello, I'm trying to get the result of that execution, and can not see the result or bring it to a txt ... the direct command in ssh running the result... (5 Replies)
Discussion started by: c0i0t3
5 Replies

2. Shell Programming and Scripting

awk in shellscript

Dear Members, I have the following situation I do not understand: I have a large json encoded file which I need to grep and afterwards want to extract specific information. I use this command to to that: cat /tmp/file | awk -F '"fields":' '{print $2}' | awk -F '"description":' '{print $4}'... (6 Replies)
Discussion started by: crumble
6 Replies

3. Shell Programming and Scripting

Help with shellscript

I am new in shell script i want to convert .txt file in the format axsjdijdjjdk to a x s j d i j d j j d k (5 Replies)
Discussion started by: sreejithalokkan
5 Replies

4. UNIX for Dummies Questions & Answers

How can I do aliasing in shellscript?

#Example.sh alias rmv 'sh Example2.sh' when i execute exapme.sh alias name not working. how i solve this problem?? (9 Replies)
Discussion started by: arun508.gatike
9 Replies

5. Shell Programming and Scripting

if condition in shellscript

Hi All, I tried below code getting error. AD=0 ZERO=0 if then echo "AD is zero select another symbol" fi syntax error near unexpected token `fi' plz help me to solve this error (4 Replies)
Discussion started by: aish11
4 Replies

6. Shell Programming and Scripting

Need help with shellscript

Hello. I am a novince at writing shell scripts but here is the question. I have to write a shell script that does the following: Once executed via crontab, the script should do the following: a. get date/time stamp in for format 10-MAR-05 and b. execute shell script my_script.sh (which... (2 Replies)
Discussion started by: jigarlakhani
2 Replies

7. UNIX for Advanced & Expert Users

shellscript problem

hI, Pls consider the following shell script #!/bin/csh -f sqlplus tkyte/tkyte <<"EOF" > tmp.csh set serveroutput on declare a number:=5; begin dbms_output.put_line( 'a:='||a ); end; / spool off "EOF" The above script does the followin 1)it connects... (1 Reply)
Discussion started by: ravi raj kumar
1 Replies

8. Programming

Shellscript for MQSeries

Iam new to shellscript. 1)How to strart QUERYMANAGER using shellscript. 2)How to put and get messages in MQSeries using shellscripts. 3)iam using local queues . Thanks lot. (0 Replies)
Discussion started by: ram2s2001
0 Replies

9. Shell Programming and Scripting

Another shellscript question

Folks; on a unix server I have a mapping file which holds a list mountpoints of all databases and their mountpoints. tab delimited or colon deliminted..I needed to copy the datafiles from the pristine mountpoints to test's mountpoints in this case. I needed to do this by passing sid name using... (18 Replies)
Discussion started by: jigarlakhani
18 Replies
Login or Register to Ask a Question