Best Python code snippet using SeleniumBase
test_call_ordering.py
Source:test_call_ordering.py
...55def test_reordering_hook_caller(dummy_plugin_manager, order, expected_result):56 """Test that the permute_hook_implementations function reorders hooks."""57 hook_caller = dummy_plugin_manager.hooks.myhook58 assert hook_caller() == START_ORDER59 hook_caller.bring_to_front(order)60 assert hook_caller() == expected_result61 # return to original order62 hook_caller.bring_to_front(START_ORDER)63 assert hook_caller() == START_ORDER64 # try again using HookImplementation INSTANCES instead of plugin names65 instances = [hook_caller.get_plugin_implementation(i) for i in order]66 hook_caller.bring_to_front(instances)67 assert hook_caller() == expected_result68def test_reordering_hook_caller_raises(dummy_plugin_manager):69 """Test that invalid calls to permute_hook_implementations raise errors."""70 hook_caller = dummy_plugin_manager.hooks.myhook71 with pytest.raises(TypeError):72 # all items must be the name of a plugin, or a HookImplementation instance73 hook_caller.bring_to_front([1, 2])74 with pytest.raises(ValueError):75 # 'wrapper' is the name of a plugin that provides an implementation...76 # but it is a hookwrappers which is not valid for `bring_to_front`77 hook_caller.bring_to_front(['p1', 'wrapper'])78 with pytest.raises(ValueError):79 # 'p4' is not in the list80 hook_caller.bring_to_front(['p1', 'p4'])81 with pytest.raises(ValueError):82 # duplicate entries are not allowed83 hook_caller.bring_to_front(['p1', 'p1', 'p2'])84 with pytest.raises(ValueError):85 # too many values86 hook_caller.bring_to_front(['p1', 'p1', 'p2', 'p4', 'p3', 'p1'])87 with pytest.raises(TypeError):88 # it has to be a list89 hook_caller.bring_to_front('p1')90def test_hook_caller_kwargs(dummy_plugin_manager):91 hook_caller = dummy_plugin_manager.hooks.myhook92 assert hook_caller() == ['p2', 'p3', 'p1']93 for p in ['p2', 'p3', 'p1']:94 # call with a specific plugin95 assert hook_caller(_plugin=p) == p96 impl = hook_caller.get_plugin_implementation(p)97 # call without specific plugins/impls98 expected = ['p2', 'p3', 'p1']99 expected.remove(p)100 assert hook_caller(_skip_impls=[impl]) == expected101def test_disable_impls(dummy_plugin_manager):102 hook_caller = dummy_plugin_manager.hooks.myhook103 assert hook_caller() == ['p2', 'p3', 'p1']...
gui.py
Source:gui.py
...27 self.quit()28 def get_text(self):29 self.result = self.cmt.get('1.0', 'end')30 self.quit()31 def bring_to_front(self):32 self.center()33 self.lift()34 self.call('wm', 'attributes', '.', '-topmost', True)35 self.after_idle(self.call, 'wm', 'attributes', '.', '-topmost', False)36 def ask_for_comment(self):37 ttk.Label(self.mainframe, font=self.font, text="What changes did you make?").grid(38 column=2, row=0, sticky="W")39 ttk.Button(self.mainframe, text="OK", command=self.done).grid(40 column=3, row=2, sticky="W")41 self.cmt = Tkinter.StringVar()42 self.entry = ttk.Entry(43 self.mainframe, font=self.font, textvariable=self.cmt)44 self.entry.grid(column=0, row=1, columnspan=4, sticky="EW")45 self.entry.focus_set()46 self.entry.bind("<Return>", lambda e: self.done())47 self.bring_to_front()48 def ask_for_cred(self, username, email):49 ttk.Label(self.mainframe, font=self.font, text="First time using RengaBit?\nPlease fill in the following details").grid(50 column=0, row=0, columnspan=6, sticky="W")51 ttk.Button(self.mainframe, text="OK", command=self.get_cred).grid(52 column=5, row=3, sticky="E")53 # TODO add username and email as place hoders if exists...54 self.username = Tkinter.StringVar()55 self.email = Tkinter.StringVar()56 self.user_entry = ttk.Entry(57 self.mainframe, font=self.font, textvariable=self.username)58 if username:59 self.user_entry.insert(0, username)60 self.email_entry = ttk.Entry(61 self.mainframe, font=self.font, width=30, textvariable=self.email)62 if email:63 self.email_entry.insert(0, email)64 ttk.Label(self.mainframe, font=self.font, text="Username: ").grid(65 column=0, row=1, sticky="WE")66 ttk.Label(self.mainframe, font=self.font, text="Email: ").grid(67 column=0, row=2, sticky="WE")68 self.user_entry.grid(column=1, row=1, columnspan=5, sticky="WE")69 self.email_entry.grid(column=1, row=2, columnspan=5, sticky="WE")70 self.user_entry.focus_set()71 self.user_entry.bind("<Return>", lambda e: self.get_cred())72 self.email_entry.bind("<Return>", lambda e: self.get_cred())73 self.bring_to_front()74 def alert(self, msg):75 ttk.Label(self.mainframe, font=self.font, text=msg).grid(76 column=1, row=0, sticky="W")77 button = ttk.Button(self.mainframe, text="OK", command=self.quit)78 button.grid(column=3, row=1, sticky="W")79 button.focus_set()80 button.bind("<Return>", lambda e: self.quit())81 self.bring_to_front()82 def issue_report(self):83 info = '''Thanks for helping us improve RengaBit.84Please let us know what was the problem (short text is enough)85If you want us to contect you, sign with you name and email'''86 ttk.Label(self.mainframe, font=self.font, text=info).grid(87 column=0, row=0, sticky="W")88 self.cmt = Tkinter.Text(89 self.mainframe, font=self.font, width=60, height=10)90 self.cmt.grid(column=0, row=2, columnspan=3)91 self.cmt.focus_set()92 button = ttk.Button(self.mainframe, text="Send", command=self.get_text)93 button.grid(column=2, row=3, sticky="W")94 self.bring_to_front()95if __name__ == "__main__":96 app = RengaGui(None)...
break-timer.py
Source:break-timer.py
...55 self.work_timer.start()56 self.app.menu['Stop'].title = "Stop"57 self.app.menu['Stop'].set_callback(self.stop)58 59 def bring_to_front(self, timer=None):60 """61 Bring the application to the front.62 """63 nsapplication = NSApplication.sharedApplication()64 nsapplication.activateIgnoringOtherApps_(True)65 66 def break_popup(self, _=None):67 """68 Popup prompting the user to let the app know when they have returned.69 """70 self.bring_to_front()71 rumps.alert(title="Go On Break", message="Get away from the computer!", ok="Back!")72 self.app.icon = "wind.png"73 self.checkin = datetime.datetime.now()74 self.delta = self.work_delta75 def take_break(self, timer):76 now = datetime.datetime.now()77 if now - self.checkin >= self.delta:78 self.checkin = now79 80 rumps.notification("Break Timer", "Time for a break!", "Click to take your break.")81 self.app.icon = "alert-circle.png"82 self.delta = self.nag_delta83 84class NotificationCenter:...
test_board.py
Source:test_board.py
...45 board.ERASE_AREA(3,2,3,3)46 board.DRAW_RECTANGLE('#',1,3,8,4)47 board.DRAG_AND_DROP(2,2,6,2)48 board.PRINT_CANVAS()49def test_bring_to_front():50 board = Board()51 board.DRAW_RECTANGLE("L",1,1,4,4)52 board.DRAW_RECTANGLE("R",2,1,4,4)53 board.PRINT_CANVAS()54 board.ERASE_AREA(3,2,3,3)55 board.DRAW_RECTANGLE('#',1,3,8,4)56 board.DRAG_AND_DROP(2,2,6,2)57 board.BRING_TO_FRONT(1,2)58 board.BRING_TO_FRONT(6,2)59 board.PRINT_CANVAS()60def test_select_through_erase():61 board = Board()62 board.DRAW_RECTANGLE("L",1,1,4,4)63 board.DRAW_RECTANGLE("R",2,1,4,4)...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!