Selenium Web Driver in Flask Testing 1
Selenium Web Driver in Flask Testing 2
| func Sqrt(x float64) (z float64) { | |
| z = 1.0 | |
| for i := 0; i < 20; i++ { | |
| z = z - (z * z - x) / (2 * z) | |
| } | |
| return z | |
| } |
| $(document).ready(function () { | |
| var $btn = $('.btn'); | |
| var $image = $('#img'); | |
| function Filter (config) { | |
| this.target = config.target; | |
| this.image = config.image; | |
| this.filters = config.filters; | |
| this.support = config.support === undefined ? true : config.support; |
| class Empleado extends React.Component { | |
| render () { | |
| return ( | |
| <li> | |
| {this.props.nombre} - {this.props.email} | |
| </li> | |
| ); | |
| } | |
| } |