We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example
# from MAIN_SEARCH_BAR = '._3FRCZ' EC.presence_of_element_located((By.CSS_SELECTOR, selector)) relement = element.find_element(By.CSS_SELECTOR, selector) # to MAIN_SEARCH_BAR = (By.CSS_SELECTOR, '._3FRCZ') EC.presence_of_element_located(selector) relement = element.find_element(selector[0], selector[1])
The text was updated successfully, but these errors were encountered:
hey, can I take a crack at this?
Sorry, something went wrong.
@pyvelkov good luck!
Merge pull request #65 from pyvelkov/main
617237d
Replaced all selectors from 'CSS selector' to (By.CSS_SELECTOR, 'CSS selector') in constacts.py and waobject.py #51
pyvelkov
Successfully merging a pull request may close this issue.
For example
The text was updated successfully, but these errors were encountered: