No keyword with name 'Open Browser' found.

10,821 views
Skip to first unread message

Vinod

unread,
May 27, 2013, 6:02:37 AM5/27/13
to robotframe...@googlegroups.com
Hi All,

I am getting this error when i upgraded my selenium2library from 0.5.2 to 1.2.0. I have Python 2.7 version and RF 2.7.7.
Kindly help me in resolving this issue. If i downgrade from 1.2.0 to 0.5.2 i get "No keyword with name 'Set Selenium Implicit Wait' found." error.

I am trying to use 'implicit wait' keyword to make my script execution smoother.

Thanks,
Vinod

Tatu Aalto

unread,
May 27, 2013, 9:59:52 AM5/27/13
to vinod...@gmail.com, robotframe...@googlegroups.com
Ugh

Most likely your upgrade did not succeed. How did upgrade Selenium2Library?
Also could you execute the following command from command line and send
output:
1) from command line: python
2) from python prompt: import Selenium2Library

-Tatu
> --
> You received this message because you are subscribed to the Google
> Groups "robotframework-users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to robotframework-u...@googlegroups.com.
> To post to this group, send email to
> robotframe...@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/robotframework-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

Vinod

unread,
May 28, 2013, 12:15:24 AM5/28/13
to robotframe...@googlegroups.com, vinod...@gmail.com
Hi Tatu,

Thanks for your reply. I installed Selenium2Library by executing the robotframework-selenium2library-1.2.0.win32.exe (md5) from the following path.

And here is the output from the command prompt

Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import selenium2library
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named selenium2library
>>>

From the output I can see that selenium2library is not installed properly. 
Could you please let me know how can i fix this issue?

Thanks,
Vinod

On Monday, 27 May 2013 19:29:52 UTC+5:30, Tatu aalto wrote:
Ugh

Most likely your upgrade did not succeed. How did upgrade Selenium2Library?
Also could you execute the following command from command line and send
output:
1) from command line: python
2) from python prompt: import Selenium2Library

-Tatu

On 27.5.2013 13:02, Vinod wrote:
> Hi All,
>
> I am getting this error when i upgraded my selenium2library from 0.5.2
> to 1.2.0. I have Python 2.7 version and RF 2.7.7.
> Kindly help me in resolving this issue. If i downgrade from 1.2.0 to
> 0.5.2 i get "No keyword with name 'Set Selenium Implicit Wait' found."
> error.
>
> I am trying to use 'implicit wait' keyword to make my script execution
> smoother.
>
> Thanks,
> Vinod
> --
> You received this message because you are subscribed to the Google
> Groups "robotframework-users" group.
> To unsubscribe from this group and stop receiving emails from it, send

Tatu aalto

unread,
May 28, 2013, 12:42:45 AM5/28/13
to vinod...@gmail.com, robotframe...@googlegroups.com

Ugh

Wrong command, import is case sensitive: import Selenium2Library

I have not tried windows installer, I always install with pip.
1) delete selenium2library from site-packages folder
2) install pip
3) with pop install Selenium2Library: pip install -U robotframework-selenium2library

Send from my mobile, so can not check all the folder locations and command syntax.

-Tatu

To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.

Vinod

unread,
May 28, 2013, 1:00:15 AM5/28/13
to robotframe...@googlegroups.com, vinod...@gmail.com
Hi Tatu,

I successfully installed the Selenium2Library using pip. Thanks for your help.

Regards,
Vinod
> To post to this group, send email to
> robotframe...@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/robotframework-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

Christian Rudolf Tan

unread,
Nov 26, 2014, 4:05:32 AM11/26/14
to robotframe...@googlegroups.com, vinod...@gmail.com
Hi Tatu, I am having the same problem, I am using mac. I tried pip uninstall robotframework-selenioum2library but this doest work when removing the library.  
> To post to this group, send email to
> robotframe...@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/robotframework-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

Tatu Aalto

unread,
Nov 26, 2014, 6:01:39 AM11/26/14
to Christian Rudolf Tan, robotframework-users, Vinod Kutani

Ugh

Unfortunately I don't live in mac  world, so I am not able to help you. Perhaps someone from the group is able to help you?

-Tatu
Send from my mobile

To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.

To post to this group, send email to robotframe...@googlegroups.com.

Jerry Schneider

unread,
Nov 26, 2014, 8:25:36 AM11/26/14
to robotframe...@googlegroups.com
I have not had to uninstall the selenium2library, so can't comment on it.  I do see a typo in what you have below though.  Have you tried "pip uninstall robotframework-selenium2library" (without the quotes)? 

You can force a reinstall of the Selenium2Library by manually deleting:
/Library/Python/2.7/site-packages/robotframework_selenium2library-1.5.0-py2.7.egg-info/
/Library/Python/2.7/site-packages/Selenium2Library
and then doing:
sudo pip install -U robotframework-selenium2library

As for the python import, Tatu is correct, you should be entering "import Selenium2Library", NOT "import selenium2library".  The import is case sensitive.

I have used the above on Mac OS X from 10.6 to 10.10

Hope this helps,
jer
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.

To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.

-- 
Linux registered user #475536
Ubuntu registered user #28583

randy....@gmail.com

unread,
Nov 17, 2016, 6:59:42 PM11/17/16
to robotframework-users, jer...@gmail.com
I have to uninstall Selenium2Library and reinstall Selenium2Library with pop : pip uninstall robotframework-selenium2library. When I start run test case in RIDE the result is :
command: pybot.bat --argumentfile c:\users\randypc\appdata\local\temp\RIDEdxbnar.d\argfile.txt --listener C:\Python27\lib\site-packages\robotide\contrib\testrunner\TestRunnerAgent.py:9969:False "D:\Kuliah\Semester 5\Tugas Akhir 1\Test.robot"
===========================================================================================================
Test                                                                                                       
===========================================================================================================
TC1                                                                                                | FAIL |
No keyword with name 'Open Browser' found.
-----------------------------------------------------------------------------------------------------------
Test                                                                                               | FAIL |
1 critical test, 0 passed, 1 failed
1 test total, 0 passed, 1 failed
===========================================================================================================
Output:  c:\users\randypc\appdata\local\temp\RIDEdxbnar.d\output.xml
Log:     c:\users\randypc\appdata\local\temp\RIDEdxbnar.d\log.html
Report:  c:\users\randypc\appdata\local\temp\RIDEdxbnar.d\report.html

can you help let me know how can i fix this issue ?
> an email to robotframework-users+unsub...@googlegroups.com.
> To post to this group, send email to
> robotframe...@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/robotframework-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.

dmitriy...@gmail.com

unread,
Nov 17, 2016, 7:21:42 PM11/17/16
to randy....@gmail.com, robotframework-users, jer...@gmail.com
What python are you using? 
Could you test s2l from python cli. 
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.

To post to this group, send email to robotframe...@googlegroups.com.

lrx82...@gmail.com

unread,
Jun 26, 2017, 2:34:11 PM6/26/17
to robotframework-users, jer...@gmail.com
so,had you finally sove the problem ? now i meet a problem like it ,it so me :No keyword with name 'Create HTTP Context' found.
but when i run :pip list ,linux so me that the :robotframework-httplibrary (0.4.2)  is in the list,so now i don't known how can i fix it.

在 2016年11月18日星期五 UTC+8上午7:59:42,Randy Purba写道:

Hélio Guilherme

unread,
Jun 26, 2017, 3:51:34 PM6/26/17
to robotframework-users
Maybe you have pip2 installed in Python 2.7 and pip3 in Python 3.x?
(It happened to me and I suspect I'm not the only one) ;)

To be sure you list the correct packages, you can create pip2 and pip3 scripts (if they do not exist already).
You could also run like "python2 -m pip list"



My Favorite Open Source Projects
awsome-lists gretl robotframework
(sponsored/patrocinado) Recomendo servidores e alojamento Web em:
http://www.proalojamento.pt/

> To post to this group, send email to
> robotframe...@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/robotframework-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsubscrib...@googlegroups.com.

To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsubscrib...@googlegroups.com.

To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.

-- 
Linux registered user #475536
Ubuntu registered user #28583

--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
To post to this group, send email to robotframework-users@googlegroups.com.
Visit this group at https://groups.google.com/group/robotframework-users.
Reply all
Reply to author
Forward
0 new messages