Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Doc revision 2022 #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AngularJSLibrary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ def __init__(self,

For more information please refer to the following documentation:

$rootElement - [https://docs.angularjs.org/api/ng/service/$rootElement|AngularJS API documentation]
$rootElement - [https://code.angularjs.org/snapshot-stable/docs/api/ng/service/$rootElement|AngularJS API documentation]

ngApp - [https://docs.angularjs.org/api/ng/directive/ngApp|AngularJS API documentation]
ngApp - [https://code.angularjs.org/snapshot-stable/docs/api/ng/directive/ngApp|AngularJS API documentation]

Not Yet Implemented - ``implicit_angular_wait`` is the implicit timeout that AngularJS library
waits for angular to finish rendering and waits for any outstanding $http calls.
Expand Down
12 changes: 12 additions & 0 deletions AngularJSLibrary/demo_ngcdk_dialog.robot
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
*** Settings ***
Library SeleniumLibrary
Library AngularJSLibrary root_selector=material-docs-app

*** Test Cases ***
Add Favorite Animal To Dialog
Open Browser https://material.angular.io/cdk/dialog/examples Chrome
Input Text //input[@for='dialog-user-name'] Robot Framework
Click Button Pick one
Input Text //input[@for='favorite-animal'] Aibo
Click Button OK
Element Text Should Be //cdk-dialog-overview-example/ol/li[3] You chose: Aibo
10 changes: 10 additions & 0 deletions AngularJSLibrary/demo_phonecat.robot
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*** Settings ***
Library SeleniumLibrary
Library AngularJSLibrary root_selector=[ng-app]

*** Test Cases ***
Search Through The Phone Catalog For Samsung Phones
Open Browser http://angular.github.io/angular-phonecat/step-14/app Chrome
Input Text //input Samsung
Click Link Samsung Galaxy Tab™
Element Text Should Be css:phone-detail h1 Samsung Galaxy Tab™
13 changes: 13 additions & 0 deletions AngularJSLibrary/demo_waitforangular.robot
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
*** Settings ***
Library SeleniumLibrary
Library AngularJSLibrary ignore_implicit_angular_wait=True

*** Test Cases ***
Search Through The Phone Catalog For Samsung Phones
Open Browser http://angular.github.io/angular-phonecat/step-14/app Chrome
Wait For Angular
Input Text //input Samsung
Wait For Angular
Click Link Samsung Galaxy Tab™
Wait For Angular
Element Text Should Be css:phone-detail h1 Samsung Galaxy Tab™
2 changes: 1 addition & 1 deletion AngularJSLibrary/test_angular2.robot
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*** Settings ***
Library Selenium2Library
Library SeleniumLibrary
Library AngularJSLibrary

*** Test Case ***
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPERS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Steps to update keyword documentation

Current Steps to Setup Development Environment and Run Tests
------------------------------------------------------------
Here are the current (as of Aug. 3, 2018, selenium==3.14.0, robotframework-seleniumlibrary==3.2.0.dev1, protractor==5.4.0) instructions for setting up the development environment and running the tests
Here are the current (as of July 25, 2022, selenium==4.3.0, robotframework-seleniumlibrary==6.1.0.dev1, protractor==6.0.0) instructions for setting up the development environment and running the tests

.. code:: bash

Expand Down
6 changes: 4 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,13 @@
AngularJSLibrary\ng-repeater.js:
AngularJSLibrary\ng-repeater.min.js:
AngularJSLibrary\__init__.py (certain javascript portions):
Various code examples (as noted in the documentation):

The MIT License

Copyright (c) 2010-2015 Google, Inc.

Copyright (c) 2010-2020 Google LLC. http://angularjs.org
Copyright (c) 2010-2022 Google LLC. http://angular.io/license

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
Expand Down
Loading