I have a testing scenarios which run on certain url, when i change the url the browser hangs on the changed url, no 'Finished Request' in the log. any idea why the browser hangs? I can see that the browser is presenting the new url - all elements are presented, when I manually refresh the browser the script continues.
class ArmingScenarios(unittest.TestCase):
LogFile.logfilename
def testing_arming_scenarios(self):
driver.get(config.get('WeRURL', 'wer_url'))
Login.login(driver)
Arming.arming(self,'dashboardScreenStatusTxt',config.get('Arming','arming_button'),config.get('Arming','disarm_button'))
driver.get(config.get('WeRURL', 'history_url'))
Testing.validate_history(self,driver)
print('Pass')