Show More
@@ -149,7 +149,7 b' casper.notebook_test(function () {' | |||
|
149 | 149 | 'import time\n' + |
|
150 | 150 | 'textbox = widgets.TextWidget()\n' + |
|
151 | 151 | 'display(textbox)\n' + |
|
152 | 'textbox.add_class("my-throttle-textbox")\n' + | |
|
152 | 'textbox.add_class("my-throttle-textbox", selector="input")\n' + | |
|
153 | 153 | 'def handle_change(name, old, new):\n' + |
|
154 | 154 | ' display(len(new))\n' + |
|
155 | 155 | ' time.sleep(0.5)\n' + |
@@ -11,7 +11,7 b' casper.notebook_test(function () {' | |||
|
11 | 11 | float_text.index = this.append_cell( |
|
12 | 12 | 'float_widget = widgets.FloatTextWidget()\n' + |
|
13 | 13 | 'display(float_widget)\n' + |
|
14 | 'float_widget.add_class("my-second-float-text")\n' + | |
|
14 | 'float_widget.add_class("my-second-float-text", selector="input")\n' + | |
|
15 | 15 | 'print(float_widget.model_id)\n'); |
|
16 | 16 | this.execute_cell_then(float_text.index, function(index){ |
|
17 | 17 | float_text.model_id = this.get_output_cell(index).text.trim(); |
@@ -6,12 +6,12 b' casper.notebook_test(function () {' | |||
|
6 | 6 | 'print("Success")'); |
|
7 | 7 | this.execute_cell_then(index); |
|
8 | 8 | |
|
9 | var int_text = {} | |
|
9 | var int_text = {}; | |
|
10 | 10 | int_text.query = '.widget-area .widget-subarea .widget-hbox-single .my-second-int-text'; |
|
11 | 11 | int_text.index = this.append_cell( |
|
12 | 12 | 'int_widget = widgets.IntTextWidget()\n' + |
|
13 | 13 | 'display(int_widget)\n' + |
|
14 | 'int_widget.add_class("my-second-int-text")\n' + | |
|
14 | 'int_widget.add_class("my-second-int-text", selector="input")\n' + | |
|
15 | 15 | 'print(int_widget.model_id)\n'); |
|
16 | 16 | this.execute_cell_then(int_text.index, function(index){ |
|
17 | 17 | int_text.model_id = this.get_output_cell(index).text.trim(); |
@@ -69,7 +69,7 b' casper.notebook_test(function () {' | |||
|
69 | 69 | 'intrange = [widgets.BoundedIntTextWidget(),\n' + |
|
70 | 70 | ' widgets.IntSliderWidget()]\n' + |
|
71 | 71 | '[display(intrange[i]) for i in range(2)]\n' + |
|
72 | 'intrange[0].add_class("my-second-num-test-text")\n' + | |
|
72 | 'intrange[0].add_class("my-second-num-test-text", selector="input")\n' + | |
|
73 | 73 | 'print(intrange[0].model_id)\n'); |
|
74 | 74 | this.execute_cell_then(int_text2.index, function(index){ |
|
75 | 75 | int_text2.model_id = this.get_output_cell(index).text.trim(); |
General Comments 0
You need to be logged in to leave comments.
Login now