Best Python code snippet using selene_python
test_form.py
Source:test_form.py
...19 submit_button = browser.element('#submit')20 first_name.set_value("Ranga")21 last_name.set_value("Caranam")22 user_email.set_value("Ranga@Caranam.com")23 gender_selector.filtered_by_their('label', have.text('Other')).element(0).click()24 user_number.set_value("9156200011")25 # filling a date 06 of March 197826 date_of_birth.click()27 select_month = Select(browser.element('.react-datepicker__month-select').get_actual_webelement())28 select_month.select_by_index(2) # real month - 129 select_year = Select(browser.element('.react-datepicker__year-select').get_actual_webelement())30 select_year.select_by_value('1978') # actual year31 browser.element(".react-datepicker__day--006").click() # actual day of month32 # browser.element('.react-datepicker__month-select').click()33 subjects.send_keys("Math").press_enter()34 subjects.send_keys("Chem").press_enter()35 hobbies_selector.filtered_by_their('label', have.text('Sports')).element(0).click()36 hobbies_selector.filtered_by_their('label', have.text('Music')).element(0).click()37 upload_button.send_keys("/Users/vladimirklonin/Documents/file.png")38 current_address.send_keys("445045, a string with address").press_tab()39 state_selector.click().element('input').send_keys("NCR").press_tab()40 city_selector.click().element('input').send_keys('Delhi').press_tab().press_enter()41 # validation data42 validation_pairs = [("Student Name", "Ranga Caranam"),43 ("Student Email", "Ranga@Caranam.com"),44 ("Gender", "Other"),45 ("Mobile", "9156200011"),46 ("Date of Birth", "06 March,1978"),47 ("Subjects", "Maths, Chemistry"),48 ("Hobbies", "Sports, Music"),49 ("Picture", "file.png"),50 ("Address", "445045, a string with address"),...
test_selene.py
Source:test_selene.py
...24 browser.element(by.name('byear')).type('1990')25 browser.element(by.name('submit')).click()26 # check contact is present27 browser.element(by.link_text('home')).click()28 browser.all(by.name('entry')).filtered_by_their('td:nth-child(2)', have.exact_text(lastname)).should(have.size(1))29 # check contact birthday30 browser.all(by.name('entry')).element_by(have.exact_text(lastname)).element('img[alt=\'Details\']').click()31 browser.element('#content').should(have.text('Birthday 6. July 1990'))32 # delete contact33 browser.element(by.link_text('home')).click()34 browser.all(by.name('entry')).element_by(have.exact_text(lastname)).element(by.name('selected[]')).click()35 browser.element('input[value=\'Delete\']').click()36 browser.switch_to.alert.accept()37 # check contact deleted38 browser.element(by.link_text('home')).click()39 browser.all(by.name('entry')).filtered_by_their('td:nth-child(2)', have.exact_text(lastname)).should(have.size(0))40 # logout41 browser.element(by.link_text('Logout')).click()...
search_page_steps.py
Source:search_page_steps.py
...18 return result19 @allure.step20 def get_search_result_with_recipe(self, result_must_be: bool = True) -> Collection:21 search_result = self.get_search_result(result_must_be)22 search_result_after_filter = search_result.filtered_by_their(self.locators.RECIPE_FLAG, be.existing)23 if result_must_be:24 assert len(search_result_after_filter) > 0, 'Search results after recipe filter are missing'25 return search_result_after_filter26 @allure.step27 def get_item_with_recipe(self, index: int = 0) -> Element:28 search_result = self.get_search_result_with_recipe()29 return search_result[index]30 @allure.step31 def get_item_name(self, item: Element) -> str:32 return item.element(self.locators.ITEM_TITLE).get(query.text)33 @allure.step34 def go_to_item_page(self, item: Element) -> ItemPageSteps:35 item.click()36 return ItemPageSteps(self.browser)
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!!