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
I'm trying to use the python ldtp library to click the following: Add extension dialog button. I was wondering if someone could point out why this isn't working. Thanks
from ldtp import *
import time
import utils
import ldtp
def main():
driver = utils.get_driver()
driver.webdriver.get("https://chrome.google.com/webstore/detail/google-calendar/gmbgaklkmjakoegficnlkhebmhkjfich")
time.sleep(2)
driver.webdriver.find_element_by_css_selector(
".webstore-test-button-label").click()
time.sleep(2)
print "HERE"
if ldtp.activatewindow('Add "Google Calendar"?'):
print "FOUND"
ldtp.generatekeyevent('<left><space>')
if __name__ == '__main__':
main()
The text was updated successfully, but these errors were encountered:
Hi there -
I'm trying to use the python ldtp library to click the following: Add extension dialog button. I was wondering if someone could point out why this isn't working. Thanks
The text was updated successfully, but these errors were encountered: