You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In webbot.py at line 73 the setattribute searches for switch_to_alert function in selenium. This does not exist any more in more recent versions of selenium as it has been replaced by switch_to.alert. Removing 'switch_to_alert' from the getattribute did not cause any issues in my program, so why is that there? Alternatively can it be replaced by self.switch_to_alert=self.driver.switch_to
The text was updated successfully, but these errors were encountered:
In webbot.py at line 73 the setattribute searches for switch_to_alert function in selenium. This does not exist any more in more recent versions of selenium as it has been replaced by switch_to.alert. Removing 'switch_to_alert' from the getattribute did not cause any issues in my program, so why is that there? Alternatively can it be replaced by
self.switch_to_alert=self.driver.switch_to
The text was updated successfully, but these errors were encountered: